-
Notifications
You must be signed in to change notification settings - Fork 47
/
index.css
58 lines (50 loc) · 827 Bytes
/
index.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
* {
box-sizing: border-box;
}
body {
background-color: #233b35;
color: #ededed;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: 'Bad Script', cursive;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Fredericka the Great', cursive;
margin-bottom: 0;
}
p {
margin: 0;
}
svg {
display: block;
margin: auto;
margin-bottom: 3em;
}
ul {
columns: 2;
padding: 0;
}
li {
break-inside: avoid;
list-style: none;
}
.coffees {
padding: 1em 8em;
}
@media only screen and (max-width: 400px) {
ul {
columns: 1;
}
}
@media only screen and (max-width: 700px) {
.coffees {
padding: 1em;
}
}