-
Notifications
You must be signed in to change notification settings - Fork 0
/
play.css
83 lines (66 loc) · 1.26 KB
/
play.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
.choice-container{
margin-bottom: 1rem;
background-color: white;
font-size: 1.8rem;
display: flex;
width:100%;
border: 0.1rem solid rgba(118, 51, 138,0.5);
}
.choice-prefix{
background-color: rgb(118, 51, 138);
color: white;
padding: 1.2rem 2.2rem;
}
.choice-text{
padding: 1.2rem;
}
.choice-container:hover{
cursor: pointer;
box-shadow: 0rem 0.4rem 1.4rem 0 rgb(209, 177, 228);
transform: translateY(-0.2rem);
transition: transform 150ms;
}
.incorrect{
background-color: rgb(228, 41, 41);
}
.correct{
background-color: rgb(25, 141, 25);
}
#hud{
display: flex;
justify-content: space-between;
}
.hud-prefix{
text-align: center;
font-size: 1.6rem;
}
.hud-main-text{
text-align: center;
}
#progressBar{
width:15rem;
height:3rem;
border: 0.2rem solid rgb(103, 35, 134);
margin-top: 1rem;
}
#progressBarFull{
background-color: rgb(103, 35, 134);
height: 2.6rem;
width: 0%;
}
#loader{
border: 1.1rem solid white;
width: 8rem;
height: 8rem;
border-radius: 50%;
border-top: 1.1rem solid rgb(146, 66, 199);
animation: spin 1.5s linear infinite ;
}
@keyframes spin{
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}