-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuizCSS.css
66 lines (65 loc) · 1.22 KB
/
QuizCSS.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
*{
box-sizing: border-box;
}
body{
background: linear-gradient(to right, #0099ff -28%, #66ff99 60%);
background-repeat: no-repeat;
min-height: 100vh;
min-width: 100vh;;
display: flex;
align-items: center;
justify-content: center;
font-family: cursive;
overflow: hidden;
}
.mainContainer{
border: 2px solid black;
border-radius: 30px;
width: 550px;
height: 550px;
margin: auto;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
overflow: hidden;
margin: -50px;
}
h2{
margin-top: -90px;
padding-bottom: 30px;
text-align: center;
}
ol{
padding-bottom: -5px;
}
ol li{
list-style: lower-alpha;
padding:25px;
padding-top: 0px;
font-size: 20px;
}
label{
cursor: pointer;
}
#btn{
padding: 10px 80px;
margin-bottom: -80px;
border-radius: 20px;
background-color: #31ffff;
cursor: pointer;
font-family: cursive;
}
#btn:hover{
background-color: #00b1b1;
color: white;
}
input{
cursor: pointer;
}
#showScore{
position: absolute;
margin-left: 80%;
margin-bottom: 89vh;
font-size: 1.4rem;
}