about summary refs log tree commit diff stats
path: root/css/_common.css
diff options
context:
space:
mode:
Diffstat (limited to 'css/_common.css')
-rw-r--r--css/_common.css50
1 files changed, 50 insertions, 0 deletions
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 @@
1/* Common CSS for all of Autocento at the breakfast table
2 * should include ONLY the following:
3 * margins & widths
4 * text sizes & font assignments
5 * link rendering
6 */
7
8@import url("./fonts/playfair.css");
9@import url("./fonts/fira.css");
10/* @import url("fonts/courier-prime.css");
11 * ^^^^^^ for typewriter pages in Paul */
12
13body {
14 font-family: Fira, serif;
15 font-size: 14pt;
16}
17
18/* Links */
19a:link {
20 color: inherit;
21 text-decoration: none;
22}
23a:visited {
24 color: inherit;
25 font-weight: lighter;
26}
27a:hover {
28 color: blue;
29 font-style: italic;
30}
31a:active {
32 color: green;
33}
34
35/* Headings */
36h1.title {
37 font-family: Playfair, serif;
38 font-size: 16pt;
39 font-weight: bold;
40}
41h1.subtitle {
42 font-family: Playfair, serif;
43 font-size: 15pt;
44 font-style: italic;
45}
46h2 {
47 font-family: Fira, sans-serif;
48 font-size: 14pt;
49 font-weight: 600;
50}