diff options
author | friendica <info@friendica.com> | 2013-11-15 02:43:59 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-15 02:43:59 -0800 |
commit | fc0a5d58d1defc55c556544f165c23e4c0779d53 (patch) | |
tree | 04277d741342da8b972117d64c4805e88980d24d /view/theme/redbasic/css | |
parent | 725440145273d66d4b5d56f7b8cbb0c4868941e6 (diff) | |
download | volse-hubzilla-fc0a5d58d1defc55c556544f165c23e4c0779d53.tar.gz volse-hubzilla-fc0a5d58d1defc55c556544f165c23e4c0779d53.tar.bz2 volse-hubzilla-fc0a5d58d1defc55c556544f165c23e4c0779d53.zip |
make font size tweakable for the whole app
Diffstat (limited to 'view/theme/redbasic/css')
-rw-r--r-- | view/theme/redbasic/css/style.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 963f22281..c280e555a 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -9,7 +9,7 @@ /* generals */ body { font-family: arial,freesans,sans-serif; - font-size: 11px; + font-size: $body_font_size; background-color: $bgcolour; background-image: url('$background_image'); background-attachment: fixed; @@ -60,6 +60,7 @@ input { -moz-border-radius: $radiuspx; border-radius: $radiuspx; padding: 3px; + font-size: $body_font_size; } code { @@ -2952,7 +2953,7 @@ div.jGrowl div.info { .jslider .jslider-scale ins { color: #333; - font-size: 10px; + font-size: $body_font_size; width: 100px; text-align: center; } |