From 89fbcf0fa6304a8cc86a5b7c51228e3cb0ac62e5 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 15 Jul 2018 23:07:51 -0300 Subject: Add fonts Inspiration: https://dthompson.us/ --- site/css/styles.css | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) (limited to 'site/css') diff --git a/site/css/styles.css b/site/css/styles.css index 002ccca..95b847b 100644 --- a/site/css/styles.css +++ b/site/css/styles.css @@ -1,3 +1,70 @@ +/* Fonts */ + + +/* Linux Libertine */ + +@font-face { + font-family: 'Linux Libertine'; + src: url('/fonts/LinLibertine_R.woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Linux Libertine'; + src: url('/fonts/LinLibertine_RI.woff'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'Linux Libertine'; + src: url('/fonts/LinLibertine_RB.woff'); + font-weight: bold; + font-style: normal; +} + + +/* Linux Biolinum */ + +@font-face { + font-family: 'Linux Biolinum'; + src: url('/fonts/linbio-r-subset.woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Linux Biolinum'; + src: url('/fonts/linbio-ri-subset.woff'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'Linux Biolinum'; + src: url('/fonts/linbio-rb-subset.woff'); + font-weight: bold; + font-style: normal; +} + + +/* Inconsolata */ + +@font-face { + font-family: 'Inconsolata'; + font-style: normal; + font-weight: 400; + src: url('/fonts/Inconsolata-Normal.woff'); +} + +@font-face { + font-family: 'Inconsolata'; + font-style: normal; + font-weight: 700; + src: local('Inconsolata Bold'), local('Inconsolata-Bold'), url('/fonts/Inconsolata-Bold.woff'); +} + body { color: black; font-size: 16px; -- cgit v1.2.3