-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (78 loc) · 1.32 KB
/
style.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
main {
font-family: 'Rubik', sans-serif !important ;
height: 500px;
}
#high-score{
color: #6f42c1;
position:absolute;
top:7px;
left:60px;
}
.box{
text-align: center;
width: 500px;
height: 300px;
margin-right: auto;
margin-top: auto;
margin-bottom: auto;
margin-left: auto;
position: relative;
top: 100px;
transition: opacity 0.5s;
left: 25%;
}
#time{
position:absolute;
top:7px;
right:60px;
}
button:hover{
background-color: #573499 !important;
}
button{
background-color:#6f42c1 !important;
color: white !important;
margin-right: auto;
margin-top: auto;
margin-bottom: auto;
margin-left: auto;
position: relative;
}
.btn-grid{
display: grid;
grid-template-columns: repeat(2, auto);
gap: 10px;
}
#next, #previous, #submit{
opacity: 0;
z-index: 2;
}
aside{
position: absolute;
align-content: center;
bottom: 100px;
width: 100%;
}
p{
padding: 15px;
}
article, form{
text-align: left;
}
.slide{
z-index: 1;
/* opacity: 0; */
display: none;
transition: opacity 0.5s;
position: absolute;
}
.active-slide{
/* opacity: 1; */
z-index: 2;
display: inline
}
.answer-status{
position: absolute;;
right: 15%;
bottom: 18%;
}