-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.css
46 lines (35 loc) · 830 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
42
43
44
45
46
.choice-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-bottom: 2rem;
width: 100%;
font-size: 2rem;
font-family: sans-serif;
border: 0.1rem solid rgb(86, 165, 235, 0.25);
background-color: white;
}
.choice-container:hover {
cursor: pointer;
box-shadow: 0 0.4rem 1.4rem 0 rgba(248, 178, 239, 0.5);
transform: translateY(-0.1rem);
transition: transform 150ms;
}
.choice-prefix {
padding: 1.3rem 2.5rem;
background-color: #8fadd2;
color: white;
}
.choice-text {
padding: 2rem;
width: 100%;
font-family: sans-serif;
font-weight: 500;
}
.question-text{
padding: 2rem;
width: 100%;
font-family: sans-serif;
font-weight: 100;
}