-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.css
More file actions
75 lines (62 loc) · 1.03 KB
/
Copy pathindex.css
File metadata and controls
75 lines (62 loc) · 1.03 KB
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
body {
margin: 0;
padding: 0;
font-family: 'Work Sans', sans-serif;
color: #33485f;
font-size: 1em;
line-height: 1.8;
}
h1, h2, h3 {
line-height: 1.25;
margin: 0;
}
h1 {
font-size: 1.75em;
}
h2 {
font-size: 1.5em;
}
h3 {
font-size: 1.25em;
}
.page-container {
height: 100vh;
background-color: #002570;
display: flex;
flex-direction: column;
align-items: center;
}
.page-body {
height: 100vh;
width: 1024px;
max-width: 1024px;
background-color: #f5f6f7;
}
.logo-link {
display: inline-block;
}
.header {
font-family: 'JetBrains Mono', monospace;
}
.header-title {
text-align: center;
}
.header-subtitle {
font-size: 1em;
text-align: center;
}
.main-content {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.main-content > *:not(:first-child) {
margin-top: 32px;
}
.doc-link {
font-size: 1.3em;
display: block;
font-family: 'JetBrains Mono', monospace;
}