diff --git a/FeedTheMonkey.pro b/FeedTheMonkey.pro index cd315e7..4973730 100644 --- a/FeedTheMonkey.pro +++ b/FeedTheMonkey.pro @@ -20,7 +20,7 @@ mac { unix { target.path = $$PREFIX/usr/local/bin - shortcutfiles.files += feedthemonkey.desktop + shortcutfiles.files = feedthemonkey.desktop shortcutfiles.path = $$PREFIX/usr/share/applications/ data.files += feedthemonkey.xpm data.path = $$PREFIX/usr/share/pixmaps/ diff --git a/content.css b/content.css index 160d818..ca9ad56 100644 --- a/content.css +++ b/content.css @@ -1,7 +1,12 @@ +html, body { + margin: 0; + padding: 0; +} + body { background: #eee; font-family: sans-serif; - padding: 1em 1.5em; + padding: 10pt 15pt; font-weight: lighter; } @@ -35,15 +40,15 @@ a { text-decoration: none; } +article { + line-height: 1.6; +} + article a { text-decoration: underline; +} img { max-width: 100%; height: auto; } - -article { - line-height: 1.6; - font-size: 0.8em; -} diff --git a/main.qml b/main.qml index b2c51cf..bb1a1fc 100644 --- a/main.qml +++ b/main.qml @@ -23,7 +23,7 @@ ApplicationWindow { property Content content: content property variant fontSizes: [7,9,11,13,15,17,19,21,23,25,27,29,31] - property int defaultTextFontSizeIndex: 4 + property int defaultTextFontSizeIndex: 3 property int textFontSizeIndex: defaultTextFontSizeIndex property int textFontSize: fontSizes[textFontSizeIndex]