-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
66 lines (57 loc) · 1.11 KB
/
index.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
.quizContainer{
margin: auto;
width: 700px;
}
.quizContainer>p{
text-align: center;
font-size: 30px;
font-weight: 600;
color: green;
}
.quizContainer>h2{
text-align: center;
font-size: 25px;
font-weight: 600;
color: orange;
}
.quizContainer>h1{
font-size: 25px;
font-weight: 600;
color: black;
}
.allAnswers {
display: flex;
flex-direction: column;
align-items: center;
}
.allAnswers>button {
width: 200px;
height: 40px;
margin: 10px;
font-size: 16px;
font-weight: 600;
color: white;
background-color: orange;
border: none;
border-radius: 5px;
}
.allAnswers>button:hover {
cursor: pointer;
background-color: darkorange;
}
.quizContainer>button {
width: 200px;
height: 40px;
margin: 10px;
font-size: 16px;
font-weight: 600;
color: white;
background-color: green;
border: none;
border-radius: 5px;
display: none;
}
.quizContainer>button:hover {
cursor: pointer;
background-color: darkgreen;
}