diff options
Diffstat (limited to 'style/typography.less')
-rw-r--r-- | style/typography.less | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/style/typography.less b/style/typography.less index d104536..f3a5e2e 100644 --- a/style/typography.less +++ b/style/typography.less @@ -1,5 +1,24 @@ +@font-face { + font-family: 'Noto Sans'; + font-style: normal; + font-weight: 400; + src: local('Noto Sans'), local('NotoSans'), url('../fonts/NotoSans.ttf') format('truetype'); +} + +@font-face { + font-family: 'Noto Sans'; + font-style: normal; + font-weight: 700; + src: local('Noto Sans Bold'), local('NotoSans-Bold'), url('../fonts/NotoSansBold.ttf') format('truetype'); +} + +@font-face { + font-family: 'Noto Sans'; + font-style: italic; + font-weight: 400; + src: local('Noto Sans Italic'), local('NotoSans-Italic'), url('../fonts/NotoSansItalic.ttf') format('truetype'); +} -@import url(http://fonts.googleapis.com/css?family=Noto+Sans:400,400italic,700); html { font-family: 'Noto Sans', 'DejaVu Sans', sans-serif; font-size: 12pt; @@ -49,8 +68,18 @@ header, main { dt { font-weight: bold; + color: @color-main; } +dd, dt { + display: block; +} + +dd { + margin-bottom: 0.5em; +} + + /** * Footnotes */ |