about summary refs log tree commit diff stats
path: root/css/_common.css
blob: 751b5de048f6a3e483805e0992a4ef8a3c3d1f62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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;
}