-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (99 loc) · 2.28 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
100
101
102
103
104
105
106
107
108
109
110
111
112
body {
background-image: url('chevron.jpg');
background-color: black;
background-repeat: no-repeat, repeat;
background-size: cover;
height: 500px;
}
.hide {
display: none;
}
.board {
background-color: white;
opacity: 90%;
border-radius: 15px;
position: relative;
margin: 20px auto;
height: 200px;
width: 580px;
padding: 20px;
color: rgb(20, 19, 19);
margin-top: 0em;
font-size: 60px;
color: rgb(104, 7, 7);
text-align: center;
}
#score {
right: 50px;
font-family: Avant Garde, Avantgarde, Century Gothic, CenturyGothic, AppleGothic, sans-serif;
background-color: #198b21;
opacity: 90%;
position: absolute;
font-size: 30px;
font-weight: bold;
color: #e9e9e9;
border-radius: 10px;
}
#wrong {
left: 15px;
font-family: Avant Garde, Avantgarde, Century Gothic, CenturyGothic, AppleGothic, sans-serif;
opacity: 85%;
background: rgb(139, 8, 8);
position: absolute;
font-size: 30px;
font-weight: bold;
color: #e9e9e9;
border-radius: 8px;
}
.answerOptionsA {
margin: 2em .5em .5em .5em;
width: 141px;
padding: 10px;
border-radius: 8px;
color: white;
background-color: black;
opacity: 98%;
}
.answerOptionsB {
margin: 2em .5em .5em .5em;
width: 141px;
padding: 10px;
border-radius: 8px;
color: white;
background-color: black;
opacity: 98%;
}
.answerOptionsC {
margin: 2em .5em .5em .5em;
padding: 10px;
border-radius: 8px;
color: white;
background-color: black;
opacity: 98%;
}
.nextBtn {
position: absolute;
right: 20%;
margin: 40px auto;
height: auto;
width: 140px;
padding: 10px;
color: white;
background: rgb(139, 8, 8);
border-radius: 8px;
}
h1 {
font-family: Avant Garde, Avantgarde, Century Gothic, CenturyGothic, AppleGothic, sans-serif;
font-size: 70px;
font-weight: bold;
color: #644647;
letter-spacing: 1px;
text-transform: uppercase;
text-shadow: 1px 1px 0 #47ff52, -1px -1px 0 #47ff52, 1px -1px 0 #47ff52, -1px 1px 0 #47ff52, 0px 1px 0 #47ff52, 1px 0px 0 #47ff52, 0px -1px 0 #47ff52, -1px 0px 0 #47ff52, 4px 2px 0 #333;
text-align: center;
}
h2 {
color: rgb(20, 19, 19);
margin-top: 0em;
font-size: 30px;
}