-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathglobal.css
More file actions
68 lines (62 loc) · 953 Bytes
/
global.css
File metadata and controls
68 lines (62 loc) · 953 Bytes
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
* {
box-sizing: border-box;
font-family: 'Public Sans', 'Inter', 'Mulish', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 300;
margin: 0;
padding: 0;
}
button {
background-color: #111;
color: #fff;
border: none;
border-radius: 8px;
padding: 8px 16px;
cursor: pointer;
outline: none;
transition: background-color 0.2s;
}
button:active,
button:focus,
button:hover {
background-color: #333;
}
/* inline code block */
code {
font-family: monospace;
}
h1 {
font-size: 32px;
font-weight: 500;
margin-bottom: 8px;
}
h2 {
font-weight: 500;
margin-bottom: 8px;
margin-top: 16px;
}
h3 {
margin-bottom: 8px;
margin-top: 16px;
}
ol,
ul {
margin: 10px 0;
padding: 0 0 0 20px;
}
li {
margin: 4px 0;
}
#app {
display: flex;
flex-direction: column;
height: 100vh;
}
a {
color: #342267;
cursor: pointer;
text-decoration: none;
}
a:hover {
color: #000;
text-decoration: underline;
}