-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
69 lines (60 loc) · 1.13 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
* {
font-family: 'Anton';
}
img#logo {
width: 7rem;
filter: invert(1);
padding-bottom: 10px;
}
.conjugation, .footer-text {
font-family: 'Ubuntu';
white-space: pre-line
}
.counter {
font-family: 'Ubuntu';
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
align-items: center;
top: 0;
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
color: black;
}
.counter > div {
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
align-items: center;
padding: 1%;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
}
.counter > * , .counter > * > *, .counter > * > * > * {
font-family: 'Ubuntu';
}
.middle {
align-content: center;
justify-content: center;
}
.no_answer {
background-color: #b6b6f2;
}
.correct {
background-color: #36ae36;
color: white;
}
.wrong {
background-color: #ff4c4c;
color: white
}
.end {
background-color: #b6b6f2!important;
color: black!important;
}