This repository has been archived by the owner on Apr 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
116 lines (96 loc) · 1.38 KB
/
main.css
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
108
109
110
111
112
113
114
115
116
.banner {
height: 8em;
width: auto;
display: block;
margin-bottom: 1em;
}
body {
background-color: #eee;
font-family: sans-serif;
font-size: 1em;
font-weight: 400;
}
.container {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.center {
margin-left: auto;
margin-right: auto;
}
.text-center {
text-align: center;
}
.row {
display: flex;
width: 100%;
justify-content: space-evenly;
margin-bottom: 16px;
}
.card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-clip: border-box;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
padding: 1.25em;
background-color: #fff;
}
pre {
overflow-x: auto;
font-size: 1.25em;
margin-top: 0;
}
p {
margin-top: 0;
margin-bottom: 16px;
}
h1,h3,h4 {
margin-top: 0px;
margin-bottom: 8px;
}
h1 {
font-size: 3em;
}
h3 {
font-size: 1.5em;
}
h4 {
font-size: 1.25em;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
@media (max-width: 840px) {
.row {
display: flex;
flex-direction: column;
width: 100%;
justify-content: space-evenly;
}
}
@media (prefers-color-scheme: dark) {
body {
background-color: rgb(21, 32, 43);
color: #eee;
}
.card {
background-color: #2B3640;
}
a {
color: #5B8DB8
}
a:hover {
color: #6798BF
}
pre {
color: #eee
}
}