-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (71 loc) · 1.31 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
.syntax {
text-decoration: underline;
text-decoration-style: solid;
text-underline-offset: 4px;
text-decoration-color: #d5d5d5;
background-color: #f4f4f4;
}
/* Temp */
.hover {
cursor: pointer;
}
.blitz__answers {
display: flex;
gap: 4px;
justify-content: center;
flex-wrap: wrap;
}
.blitz__answers .correct {
border: solid 1px #47b479;
color: #257f4f;
background-color: #eefff9;
}
.blitz__answers .wrong {
border: solid 1px #c52222;
color: #bd0303d4;
background-color: #ff342030;
}
.blitz__answers .word {
text-align: center;
}
.blitz__answers button:hover {
cursor: pointer;
}
.blitz__answers button:disabled {
cursor: default;
}
.blitz__answers button:focus-visible {
box-shadow: var(--input-shadow);
}
.blitz__hr {
border-top-width: 1px;
margin: 1rem 0;
}
.blitz__next {
display: flex;
justify-content: center;
}
.blitz__next button {
cursor: pointer;
}
.blitz__next button:disabled {
cursor: default;
}
.blitz__question {
text-align: center;
}
@media (prefers-color-scheme: dark) {
.syntax {
text-decoration-color: #6f6f6f;
background-color: #2d2d2d;
}
.blitz__answers .correct {
color: #23b96a;
background-color: #294138;
}
.blitz__answers .wrong {
border: solid 1px #c52222;
color: #df3e3e;
background-color: #d5210f38;
}
}