diff --git a/cps/static/css/colors.css b/cps/static/css/colors.css index dcc18008..b5318b9c 100644 --- a/cps/static/css/colors.css +++ b/cps/static/css/colors.css @@ -1,5 +1,15 @@ -@import url(http://fonts.googleapis.com/css?family=Libre+Baskerville:400,700); - +@font-face { + font-family: 'Libre Baskerville'; + font-style: normal; + font-weight: 400; + src: local('Libre Baskerville'), local('LibreBaskerville-Regular'), url("../fonts/LibreBaskerville-Regular.ttf") format('truetype'); +} +@font-face { + font-family: 'Libre Baskerville'; + font-style: normal; + font-weight: 700; + src: local('Libre Baskerville Bold'), local('LibreBaskerville-Bold'), url("../fonts/LibreBaskerville-Bold") format('truetype'); +} body{ color: #444; diff --git a/cps/static/css/style.css b/cps/static/css/style.css index a884f5de..c42c243a 100644 --- a/cps/static/css/style.css +++ b/cps/static/css/style.css @@ -1,4 +1,9 @@ -@import url(http://fonts.googleapis.com/css?family=Grand+Hotel); +@font-face { + font-family: 'Grand Hotel'; + font-style: normal; + font-weight: 400; + src: local('Grand Hotel'), local('GrandHotel-Regular'), url("../fonts/GrandHotel-Regular.ttf") format('truetype'); +} body{background:#f2f2f2}body h2{font-weight:normal;color:#444} a{color: #45b29d}a:hover{color: #444;} .navigation .nav-head{text-transform:uppercase;color:#999;margin:20px 0}.navigation .nav-head:nth-child(1n+2){border-top:1px solid #ccc;padding-top:20px} diff --git a/cps/static/fonts/GrandHotel-Regular.ttf b/cps/static/fonts/GrandHotel-Regular.ttf new file mode 100644 index 00000000..bf2bb8a0 Binary files /dev/null and b/cps/static/fonts/GrandHotel-Regular.ttf differ diff --git a/cps/static/fonts/LibreBaskerville-Bold.ttf b/cps/static/fonts/LibreBaskerville-Bold.ttf new file mode 100644 index 00000000..5195caf6 Binary files /dev/null and b/cps/static/fonts/LibreBaskerville-Bold.ttf differ diff --git a/cps/static/fonts/LibreBaskerville-Regular.ttf b/cps/static/fonts/LibreBaskerville-Regular.ttf new file mode 100644 index 00000000..4df35bcf Binary files /dev/null and b/cps/static/fonts/LibreBaskerville-Regular.ttf differ