-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.css
More file actions
106 lines (90 loc) · 1.72 KB
/
Copy pathgame.css
File metadata and controls
106 lines (90 loc) · 1.72 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
.choice-container {
display: flex;
margin-bottom: 1.4rem;
width: 100%;
font-size: 1.8rem;
border: 0.1rem solid rgba(86, 165, 235, 0.25);
background-color: white;
z-index: 1;
}
.choice-container:hover {
cursor: pointer;
/* box-shadow: 0 0.4rem 1.4rem 0 #39FF14(86, 185, 235, 0.5); */
transform: translate(-0.5rem);
transition: transform 200ms;
/* transition-delay: 1s; */
color: #56a5eb;
background: white;
box-shadow: 0 0 20px #56a5eb;
/* transition-delay: 1s; */
}
.choice-prefix {
padding: 1.5rem 2.5rem;
background-color: #56a5eb;
color: white;
}
.choice-text {
padding: 1.5rem;
}
h2 {
margin-bottom: 3rem;
color: #56a5eb;
}
/* .container {
background-color: aliceblue;
} */
.choice-container correct {
background-color: #56a5eb;
}
.choice-container incorrect {
background-color: #dc3545;
}
/* HUD */
#hud {
display: flex;
justify-content: space-between;
}
.hud-prefix,
.hud-main-text {
text-align: center;
font-size: 2rem;
color: #56a5eb;
padding: 1rem 1.5rem;
font-weight: 100;
}
.hud-main-text {
font-size: 8rem;
margin-top: -3rem;
font-weight: 500;
}
#progressBar {
width: 20rem;
height: 4rem;
border: 0.3rem solid #56a5eb;
margin-top: 1.5rem;
}
#progressBarFull {
height: 3.4rem;
background-color: #56a5eb;
width: 0%;
}
/* loader */
#loader {
border: 1.6rem solid #56a5eb;
border-radius: 50%;
border-top: 1.6rem solid #032321;
width: 12rem;
height: 12rem;
animation: spin 2s linear infinite;
/* background: #042104; */
/* box-shadow: 0 0 10px #56a5eb , 0 0 40px #56a5eb ,0 0 80px #56a5eb; */
transition-delay: 0.2s;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}