diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2013-06-06 19:34:38 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2013-06-06 19:36:00 +0200 |
commit | 894b79f5ffd816962fe38207d40bf05274490498 (patch) | |
tree | 8dd839b36abe49688f5e8b89c8a61921989607f4 /src/data/home.html | |
parent | Remember to save zoom settings on change (diff) | |
download | rekonq-894b79f5ffd816962fe38207d40bf05274490498.tar.xz |
Use webkit general font to render rekonq pages
BUG: 320318
Diffstat (limited to 'src/data/home.html')
-rw-r--r-- | src/data/home.html | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/src/data/home.html b/src/data/home.html index 4f4eb7ba..428030c6 100644 --- a/src/data/home.html +++ b/src/data/home.html @@ -8,6 +8,7 @@ To let it work you need to set also some variables about (prepend a $ to actually use them): DEFAULT_PATH = rekonq default installation files path +GENERAL_FONT = general font family ... --> @@ -23,20 +24,14 @@ DEFAULT_PATH = rekonq default installation files path /* -------------------------------------------------------- */ /* generic styles */ -@font-face { - font-family: 'Nunito'; - src: url($DEFAULT_PATH/fonts/Nunito-Regular.ttf); - font-weight: normal; - font-style: normal; -} - html { height:100%; } body { background: url($DEFAULT_PATH/pics/background.png) repeat-y center #fff; - font-family: 'Nunito', sans-serif; + font-family: $GENERAL_FONT; + font-weight: 500; font-size: 0.9em; } @@ -65,7 +60,7 @@ a:hover { input { min-width: 180px; - font-family: 'Nunito', sans-serif; + font-family: $GENERAL_FONT; font-size: 0.8em; } |