-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
122 lines (107 loc) · 1.9 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
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
113
114
115
116
117
118
119
120
121
122
@font-face {
font-family: 'ITC Century';
src: url('Century-BookCondensed.otf')
}
body {
font-family: 'ITC Century';
font-size: 20px;
color: white;
font-weight: 300;
text-align: center;
background-color: black;
}
.pic {
width: 30%;
padding: 20px;
}
h1 {position: fixed;
left: 0;
top: 0;
width: 100%;
font-weight: 300;
margin: 0px;
font-size: 20px;
background-color: #276733;
color: #fff;
z-index: 7;
}
a {
color: #81d5eb
}
footer {
height: 10px;
position: fixed;
display: flex;
align-items: center;
justify-content: center;
left: 0;
bottom: 0;
width: 100%;
font-size: 14px;
background-color: #276733;
color: white;
padding: 10px
}
#difficulty {
padding:20px ;
margin-top: 5%;
}
.question {
font-size: 30px;
margin-bottom: 10px;
}
.answers {
margin-bottom: 20px;
text-align: left;
display: inline-block;
}
.answers label {
display: block;
margin-bottom: 10px;
}
button {
font-family: 'Work Sans', sans-serif;
font-size: 22px;
background-color: #276733;
color: #fff;
border: 0px;
border-radius: 3px;
padding: 20px;
cursor: pointer;
margin-top: 40%;
}
button.button2 {
margin-top:0%;
width: 10%
}
button:hover {
background-color: rgb(92, 153, 13);
}
.slide {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
z-index: 1;
opacity: 0;
transition: opacity 0.5s;
}
.active-slide {
opacity: 1;
z-index: 2;
}
.quiz-container {
position: relative;
margin-top: 20px;
}
.inner-answer {
display: list-item;
list-style: upper-alpha inside;
clear: left;
}
.inner-answer label {
display: inline-block;
}
.scoreboard-container{
padding: 30px;
}