-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (103 loc) · 1.57 KB
/
style.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
108
109
110
code {
font-family: "Courier New", Courier, monospace;
}
body,
html {
height: 100%;
margin: 0;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: "Karla", Arial, Helvetica, sans-serif;
background-color: #005230;
color: white;
}
body.yes {
background-color: #067f4c;
}
body.no {
background-color: #104142;
}
.question {
display: block;
text-align: center;
}
.question.move {
animation: question 0.4s infinite alternate;
}
.debug {
margin: 0;
color: red;
}
@keyframes question {
from {
transform: translate(0, 0);
}
to {
transform: translate(0, -10px);
}
}
.answer {
display: block;
text-align: center;
}
.secondary {
margin: 0;
opacity: 0.6;
}
.secondary .loading,
.secondary .check,
.secondary .source {
display: none;
margin: 20px 0;
padding: none;
font-size: inherit;
text-align: center;
font-weight: 500;
}
.secondary .check {
cursor: pointer;
}
.secondary .check:hover {
text-decoration: underline;
}
.secondary .source {
margin: 5px 0;
font-size: 90%;
}
.secondary .source p {
margin: 10px 0;
}
.secondary .source p:first-of-type {
margin: 0;
}
.secondary .source a {
font-size: 70%;
color: white;
opacity: 0.5;
}
.secondary .source a:not(:hover) {
text-decoration: none;
}
footer {
position: fixed;
bottom: 5px;
left: 5px;
right: 5px;
font-size: clamp(10px, 2vw, 12px);
opacity: 0.25;
}
footer a {
color: white;
}
footer a:not(:hover) {
text-decoration: none;
}
@media (max-width: 400px) {
footer {
text-align: center;
}
}