-
Notifications
You must be signed in to change notification settings - Fork 5
/
styles.css
67 lines (60 loc) · 1003 Bytes
/
styles.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
:root {
--main-max-width: 720px;
}
.navbar {
font-size: 1.6em;
font-weight: bold;
margin-bottom: 20px;
border: 3px solid #000;
padding: 10px;
display: flex;
flex-wrap: wrap;
}
.navbar__col {
margin-right: 5px;
margin-left: 5px;
display: flex;
flex-direction: column;
justify-content: center;
}
.navbar__image {
height: 100%;
width: 42px;
}
.navbar__link {
color: #000;
}
.content {
max-width: var(--main-max-width);
margin: 0 auto;
font-family: Arial;
font-size: 18px;
line-height: 1.4;
}
pre {
font-size: 14px;
overflow-x: auto;
}
.button {
padding: .5em 1em;
margin: 5px;
border: 2px solid #000;
border-radius: .5em;
color: #fff;
background-color: #000;
text-decoration: none;
user-select: none;
cursor: pointer;
font-family: -system-ui, sans-serif;
font-size: 1em;
line-height: 1.2;
white-space: nowrap;
}
.button:hover {
color: #555555;
background-color: #fff;
border: 2px solid #000;
}
img {
max-width: 100%;
}