-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (85 loc) · 1.33 KB
/
style.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
* {
box-sizing: border-box;
font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji",
"Segoe UI Symbol";
}
/* ::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar {
background: transparent;
}
::-webkit-scrollbar-track {
background: #2e2e2d;
}
::-webkit-scrollbar-thumb {
background: #403f3d;
}
::-webkit-scrollbar-thumb:hover {
background: #575652;
} */
html,
body {
margin: 0;
padding: 0;
}
body {
margin: 2em auto;
max-width: 750px;
color: #141316;
line-height: 1.5;
background-color: #ffffff;
}
a,
a.visited {
color: inherit;
text-decoration: underline;
}
a {
color: #000000;
}
header {
margin-top: 10vh;
}
.page-title {
font-size: 2.5rem;
font-weight: 700;
margin-top: 0;
margin-bottom: 0.75em;
/* display: none; */
}
hr {
background: transparent;
display: block;
width: 100%;
height: 10px;
visibility: visible;
border: none;
border-bottom: 1px solid #00000018;
}
.icon {
display: inline-block;
max-width: 2.4em;
max-height: 2.4em;
text-decoration: none;
vertical-align: text-bottom;
margin-right: 0.5em;
}
.page-header-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
@media screen and (max-width: 576px) {
body {
padding: 2rem;
}
header {
margin-top: 0;
}
}