-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
107 lines (93 loc) · 1.53 KB
/
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
max-height: 100%;
background-color: #ffc600;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
color: #1e1f23;
font-weight: 900;
line-height: 1.3;
}
a {
color: black;
text-decoration: none;
}
h2 {
margin-top: 0;
}
/* Use bold to not bold sike */
strong {
font-weight: 700;
}
.debug-container {
width: 90%;
cursor: pointer;
}
@media (min-width: 414px) {
.debug-container {
font-size: 1.3rem;
}
}
@media (min-width: 700px) {
.debug-container {
width: 50%;
max-width: 400px;
font-size: 1.5rem;
}
}
.debug-details {
list-style: none;
padding-left: 0;
}
.debug-details li {
margin-bottom: 0.25rem;
}
.fixed-header {
background-color: #fff;
border-bottom: 1px #000 solid;
height: 40px;
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.fixed-footer {
background-color: #ffc600;
border-top: 1px black solid;
height: 40px;
position: fixed;
bottom: 0;
left: 0;
right: 0;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.fixed-header,
.fixed-footer {
font-size: 0.75rem;
}
@media (min-width: 1000px) {
.fixed-header,
.fixed-footer {
font-size: 1.25rem;
}
}
.toast-bottom-center {
bottom: 50px !important;
}
@media (min-width: 768px) {
.hide {
display: none;
}
}