diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-24 16:16:56 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-25 16:13:05 +0200 |
commit | 79567dcbc0d4fce5a7bd52e18766c9fe914c337e (patch) | |
tree | 5f3e307dab791d8876fe7dabc41950bcfbb2a18c /core/css/fonts.css | |
parent | 1efbc993650938ad961285af12b3164654bf8114 (diff) | |
download | nextcloud-server-79567dcbc0d4fce5a7bd52e18766c9fe914c337e.tar.gz nextcloud-server-79567dcbc0d4fce5a7bd52e18766c9fe914c337e.zip |
move fonts from Regular+Bold to Light+Semibold for lighter feel
Diffstat (limited to 'core/css/fonts.css')
-rw-r--r-- | core/css/fonts.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/css/fonts.css b/core/css/fonts.css index aa6e71bef21..de2742c6368 100644 --- a/core/css/fonts.css +++ b/core/css/fonts.css @@ -1,13 +1,13 @@ @font-face { font-family: 'Open Sans'; font-style: normal; - font-weight: normal; - src: local('Open Sans'), local('OpenSans'), url(../fonts/OpenSans-Regular.woff) format('woff'); + font-weight: 300; + src: local('Open Sans Light'), local('OpenSans-Light'), url(../fonts/OpenSans-Light.woff) format('woff'); } @font-face { font-family: 'Open Sans'; font-style: normal; - font-weight: bold; - src: local('Open Sans Bold'), local('OpenSans-Bold'), url(../fonts/OpenSans-Bold.woff) format('woff'); -}
\ No newline at end of file + font-weight: 600; + src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../fonts/OpenSans-Semibold.woff) format('woff'); +} |