From 9f2b69909d81cb5c734c9fc944257a2f6b7d1986 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Mon, 2 Mar 2015 18:27:27 -0700 Subject: Add fonts: Playfair, Fira, Courier Prime --- css/_common.css | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) (limited to 'css/_common.css') diff --git a/css/_common.css b/css/_common.css index e69de29..751b5de 100644 --- a/css/_common.css +++ b/css/_common.css @@ -0,0 +1,50 @@ +/* Common CSS for all of Autocento at the breakfast table + * should include ONLY the following: + * margins & widths + * text sizes & font assignments + * link rendering + */ + +@import url("./fonts/playfair.css"); +@import url("./fonts/fira.css"); +/* @import url("fonts/courier-prime.css"); + * ^^^^^^ for typewriter pages in Paul */ + +body { + font-family: Fira, serif; + font-size: 14pt; +} + +/* Links */ +a:link { + color: inherit; + text-decoration: none; +} +a:visited { + color: inherit; + font-weight: lighter; +} +a:hover { + color: blue; + font-style: italic; +} +a:active { + color: green; +} + +/* Headings */ +h1.title { + font-family: Playfair, serif; + font-size: 16pt; + font-weight: bold; +} +h1.subtitle { + font-family: Playfair, serif; + font-size: 15pt; + font-style: italic; +} +h2 { + font-family: Fira, sans-serif; + font-size: 14pt; + font-weight: 600; +} -- cgit 1.4.1-21-gabe81