-
Notifications
You must be signed in to change notification settings - Fork 5
/
quiz.css
76 lines (65 loc) · 1.17 KB
/
quiz.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
body {
font-family: Open Sans;
background: url(https://acegif.com/wp-content/gif/outerspace-6.gif);
background-size: cover;
}
h1 {
text-align: center;
}
#title {
text-decoration: underline;
}
#quiz {
text-indent: 10px;
display:none;
}
.button {
border:4px solid;
border-radius:5px;
width: 40px;
padding-left:5px;
padding-right: 5px;
position: relative;
float:right;
background-color: #DCDCDC;
color: black;
margin: 0 2px 0 2px;
}
.button.active {
background-color: #F8F8FF;
color: #525252;
}
button {
position: relative;
float:right;
}
.button a {
text-decoration: none;
color: black;
}
#container {
background: url(https://c.tenor.com/4wAtE3WwF1wAAAAd/space-gif-space.gif);
width:640px;
height: 360px;
margin:auto;
padding: 0 25px 40px 10px;
background-color: #000000;
border:4px solid #B0E0E6;
border-radius:5px;
background-size: cover;
color: #FFFFFF;
font-weight: bold;
box-shadow: 5px 5px 5px #888;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
#prev {
display:none;
}
#start {
display:none;
width: 90px;
}