-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.css
70 lines (61 loc) · 927 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
59
60
61
62
63
64
65
66
67
68
69
70
* {
margin: 0;
padding: 0
}
::-webkit-scrollbar {
display: none
}
div {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
align-self: stretch;
flex-direction: column;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-shrink: 0;
max-width: 100%;
box-sizing: border-box
}
body {
background-color: rgb(235, 235, 235);
font-family: Inter UI, Helvetica Neue, -apple-system;
font-size: 16px
}
html,
body,
#__next {
min-height: 100%
}
@keyframes loading {
0% {
transform: scale(0.25, 0.25);
opacity: 1.0
}
50% {
transform: scale(1, 1);
opacity: 0.5
}
99% {
transform: scale(0.25, 0.25);
opacity: 1.0
}
}
.desktop-only {
display: none
}
@media (min-width: 640px) {
.desktop-only {
display: block
}
}
.flag {
flex-direction: column
}
@media (min-width: 640px) {
.flag {
flex-direction: row
}
}