-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
65 lines (54 loc) · 1.05 KB
/
styles.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
#quiz {
background-color: #ede8e4;
color: #1d3a42;
border: 4px solid #5e4630;
border-radius: 6px;
padding: 20px;
max-width: 700px;
margin: 0 auto;
text-align: center;
font-family: 'Poppins', sans-serif;
}
.quiz__btn {
background-color: #eecb6e;
color: #ffffff;
padding: 0.75rem 3rem;
border: none;
border-radius: 5px;
cursor: pointer;
}
.welcomescreen {}
.red {
color: #da7676;
}
.resultscreen {
background-color: #ede8e4;
color: #1d3a42;
border: 4px solid #5e4630;
border-radius: 6px;
padding: 20px;
max-width: 700px;
margin: 0 auto;
text-align: left;
font-family: 'Poppins', sans-serif;
}
.question__awswers {
list-style-type: none;
padding-left: 0;
}
.awswer {
border: 2px solid #1d3a42;
color: #000000;
background-color: #ffffff;
text-align: left;
padding: 0.5rem 1rem;
margin: 10px auto;
cursor: pointer;
}
.answer--correct {
background-color: #8bbc98;
}
.answer--wrong {
background-color: #da7676;
}
.questionscreen {}