summaryrefslogtreecommitdiff
path: root/static/style.css
blob: 86d1fed5c8c863b922539910911b8dd3878ca2ea (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
107
@font-face {
	font-family: EBGaramond;
	src: url(/sumcheck/static/EBGaramond-VariableFont_wght.ttf) format('woff2-variations');
	font-style: normal;
}

@font-face {
	font-family: EBGaramond;
	src: url(/sumcheck/static/EBGaramond-Italic-VariableFont_wght.ttf) format('woff2-variations');
	font-style: italic;
}

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

body {
	background: #fdf3f3;
	color: DarkSlateGrey;
	font-family: EBGaramond, serif;
    font-size: large;
}

a {
	color: #1a97bf;
}

a:hover {
	color: #075d77;
}

.container {
    margin: 1em;
}

.row {
	margin-bottom: 1em;
}

.title {
	letter-spacing: -0.5px;
}

label {
    margin-right: 4px;
}

form {
	border: 1px DarkSlateGrey solid;
    padding: 10px;
    padding-left: 25px;
}

.narrow {
    max-width: 40em;
}

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

.nonbreaking {
	white-space: nowrap;
}

.focus {
	font-weight: bold;
}

input[type="text"] {
    margin-left: .25em;
	width: 75%;
	max-width: 50em;
    font-family: FiraMono, monospace;
}

ul {
    list-style-type: lower-greek;
}

.theorem {
    font-size: medium;
    font-family: FiraMono, monospace;
}

button {
    margin-right: 10px;
}

.valid {
    background-color: #aed975;
}

.invalid {
    background-color: #ff7c7b;
}

.error {
    background-color: #c4c4c4;
}

.validity {
    font-weight: bold;
}