blob: d96635acbaae6918200cc84ac0fadf238f8fde6d (
plain) (
blame)
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
|
:root {
--main-bg: white;
--nav-bg: lightgray;
--main-fg: black;
--links: #3271e7;
}
@font-face {
font-family: 'Crimson Pro';
src: url(/static/CrimsonPro-Regular.woff2) format('woff2');
}
@font-face {
font-family: 'Crimson Pro';
font-weight: bold;
src: url(/static/CrimsonPro-Bold.woff2) format('woff2');
}
body {
background-color: var(--main-bg);
margin: 0px;
color: var(--main-fg);
}
.header-outer {
height: 80px;
position: fixed;
top: 0px;
}
.footer-outer {
height: 60px;
position: fixed;
bottom: 0px;
}
.header-outer, .footer-outer {
background-color: var(--nav-bg);
width: 100%;
}
.header-inner, .footer-inner {
max-width: 800px;
margin: auto;
padding-top: 20px;
padding-bottom: 20px;
display: flex;
}
.header-inner {
justify-content: space-between;
}
.footer-inner {
justify-content: flex-start;
gap: 20px;
}
.header-inner h1, .header-inner p, .footer-inner p {
margin: 0px;
}
.header-inner h1 a {
color: var(--main-fg);
}
.header-inner .login-info {
text-align: right;
}
.content {
padding-top: 80px;
padding-bottom: 60px;
max-width: 800px;
margin: auto;
}
h1, h2, p, label, input {
font-family: 'Crimson Pro';
}
h1 {
font-size: 36px;
}
h2 {
font-size: 27px;
}
p, label, input {
font-size: 18px;
}
a {
text-decoration: none;
color: var(--links);
}
|