-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (79 loc) · 1.42 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
body {
background-image: url("./bg.jpg");
margin: 0;
padding: 0;
box-sizing: border-box;
text-align: center;
}
#quizBox {
background-color:lightcyan;
padding: 5px;
margin: auto;
width: 440px;
min-height: 400px;
max-height: 500px;
position: absolute;
top: 10px;
bottom: 10px;
right: 10px;
left: 10px;
border-radius: 10px;
box-shadow: inset black 0px 0px 5px;
}
#quizQuestion {
font-size: larger;
font-weight: bold;
text-align: left;
margin-left: 10px;
margin-right: 10px;
padding: 5px;
border-radius: 10px;
}
.quizAnswer {
text-align: left;
margin-left: 10px;
margin-right: 10px;
background-color:lightcyan;
padding: 10px;
border-radius: 5px;
width: 300px;
margin: 5px;
}
.quizAnswer:hover:not(:disabled){
background-color:white;
}
.quizAnswer:disabled{
cursor: no-drop;
color: black;
}
#quizNext {
background-color: rgb(0, 115, 255);
color: white;
padding: 7px;
font-size: 12px;
border-radius: 5px;
text-transform: uppercase;
margin: 30px;
letter-spacing: 2px;
display: none;
}
#quizNext2 {
background-color: rgb(0, 115, 255);
color: white;
padding: 7px;
font-size: 12px;
border-radius: 5px;
text-transform: uppercase;
margin: 30px;
letter-spacing: 2px;
display: none;
}
.quizButton{
cursor: pointer;
}
.falseClass{
background-color: rgba(240, 128, 128, 0.469);
}
.trueClass{
background-color: rgba(172, 255, 47, 0.469);
}