summaryrefslogtreecommitdiff
path: root/static/styles.css
blob: e5d471f1c8dfa99d59c366dec6abd9b478f7a38b (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
@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: 18px;
    text-align: center;
    line-height: 1;
}

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

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

p {
    margin-bottom: 0;
}

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

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


.header {
    font-style: italic;
}

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