-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
80 lines (66 loc) · 964 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
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Geist Mono", monospace;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}
body {
background-color: black;
color: whitesmoke;
padding: 2rem 1rem;
min-height: 100vh;
}
h1 {
text-align: left;
}
#header {
padding: 1rem 0;
}
#header,
#header h3,
#header p {
text-align: center;
}
.name {
font-size: 2em;
}
.equ {
font-size: 1.5rem;
}
a,
a:link,
a:visited {
color: rgb(0, 183, 255);
font-weight: 700;
padding: 1rem 0;
margin-top: 0.3rem;
border-radius: 10px;
text-decoration: none;
}
a::before {
content: "[";
}
a::after {
content: "]";
}
ul {
padding: 0 1.3rem;
}
li {
margin: 1rem 0;
}
section {
margin: 2em 0;
}
@media screen and (min-width: 768px) {
body {
padding: 0 15%;
}
h1 {
padding-top: 1rem;
text-align: center;
}
}