-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.css
41 lines (41 loc) · 795 Bytes
/
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
.choice-container{
display: flex;
margin-bottom: 0.5rem;
width: 100%;
height: auto;
font-size: 1.8rem;
border: 0.1rem solid rgba(86, 165, 235, 0.5);
background-color: #ffffff;
}
.choice-container:hover{
cursor: pointer;
box-shadow: 0 0.4rem 1.4rem 0 rgba(86, 185 , 235, 0.5);
transform: translateY(-0.1rem);
transition: 150ms;
}
.choice-prefix {
padding: 1.5rem 2.5rem;
background-color: #56a5ab;
color: #ffffff;
}
.choice-text {
padding: 1.5rem;
width: 100%;
}
.correct {
background-color: green;
}
.incorrect {
background-color: red;
}
#hud{
display: flex;
justify-content: space-between;
}
.hud-prefix {
text-align: center;
font-size: 1.5rem;
}
.hud-main-text {
text-align: center;
}