-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.css
83 lines (73 loc) · 1.41 KB
/
game.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
body{
color: #fff;
}
.choice-container{
display: flex;
margin-bottom: 0.8rem;
width: 100%;
border-radius: 4px;
background: #da4167ff;
font-size: 3rem;
min-width: 80rem;
}
.choice-container:hover{
cursor: pointer;
transform: scale(1.02);
transform: transform 100ms;
}
.choice-prefix{
padding: 2rem 2.5rem;
color: white;
}
.choice-text{
padding: 2rem;
width: 100%;
}
.correct{
background: linear-gradient(32deg, rgba(11,223,36) 0%, rgb(41,232,111) 100%);
}
.incorrect{
background: linear-gradient(32deg, rgba(230,29,29,1)0%, rgb(224, 11,11,1) 100%);
}
#hud{
display: flex;
justify-content: space-between;
}
.hud-prefix{
text-align: center;
font-size: 2rem;
}
.hud-main-text{
text-align: center;
}
#progressBar{
width: 20rem;
height: 3rem;
border: 0.2rem solid yellow;
margin-top: 2rem;
border-radius: 50px;
overflow: hidden;
}
#progressBarFull{
height: 100%;
background: yellow;
width: 0%;
}
@media screen and (max-width: 1237px) {
.choice-container{
min-width: 40rem;
}
}
@media screen and (max-width: 573px) {
.choice-container{
min-width: 20rem;
}
}
@media screen and (max-width: 437px) {
h1{
font-size: 3rem;
}
.choice-container{
margin-bottom: 0.5rem;
}
}