summaryrefslogtreecommitdiff
path: root/static/styles.css
blob: d6a60b1dbef1edc4ee75b3e88ecbe3cf9c8dccd2 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
@font-face {
	font-family: Charter;
	src: url(charter_regular.woff2) format('woff2-variations');
	font-style: normal;
}

@font-face {
	font-family: Charter;
	src: url(charter_italic.woff2) format('woff2-variations');
	font-style: italic;
}

@font-face {
	font-family: Charter;
	src: url(charter_bold.woff2) format('woff2-variations');
    font-weight: bold;
}

@font-face {
	font-family: Charter;
	src: url(charter_bold_italic.woff2) format('woff2-variations');
	font-style: italic;
    font-weight: bold;
}

@font-face {
	font-family: FiraMono;
	src: url(FiraMono-Regular.ttf);
	font-style: normal;
}

body {
	background: #fffaef;
	color: DarkSlateGrey;
	font-family: Charter, serif;
	font-size: 16px;
    text-align: center;
    line-height: 1.2;
}

.container {
    margin: 0 auto;
    text-align: left;
    display: inline-block;
    margin: 1em;
    min-width: 40%;
}

@media only screen and (min-width: 700px) {
    .container {
        border: 1px DarkSlateGrey dotted;
        border-radius: 4px;
        box-shadow: 4px 4px 0px DarkSlateGrey;
        padding: 2em;
        max-width: 40em;
    }
}

@media only screen and (min-height: 650px) {
    .container {
        margin-top: 6%;
    }
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
	color: #dd1b26;
}

a:hover {
    text-decoration: underline;
	color: #dd1b26;
}

.header {
    font-style: italic;
}

.top-title {
    font-size: x-large;
    font-weight: bold;
	letter-spacing: -1px;
}

.home {
    font-style: italic;
    font-size: 18px;
    letter-spacing: -1.2px;
}

.home-link {
}

.title {
    font-weight: bold;
    text-transform: uppercase;
}

.sep {
    margin-left: 6px;
    margin-right: 6px;
}