-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
51 lines (44 loc) · 851 Bytes
/
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
body {
font-family: 'Jost', sans-serif;
color: white;
background-color: rgb(47, 46, 46);
display: flex;
justify-content: center;
text-align: center;
}
h1 { font-size: 4em }
h2 { font-size: 2.5em }
h3 { font-size: 2em}
h4 { font-size: 1.5em}
main {
width: 80%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.logo-container h1 {
margin-top: 0px;
}
code {
background: lightgray;
padding: 2px 4px;
border-radius: 4px;
color: #b00000;
}
ol {
list-style-position: inside;
list-style-type: upper-roman;
}