-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (72 loc) · 1.34 KB
/
Copy pathstyle.css
File metadata and controls
77 lines (72 loc) · 1.34 KB
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
@import url(http://fonts.googleapis.com/css?family=Rokkitt);
h1{
font-family: 'Rokkitt',serif;
text-align: center;
color:blueviolet;
font-size: 35px;
}
ul{
list-style: none;
}
li{
font-family: 'Rokkitt',serif;
font-size: 2em;
color: blueviolet;
}
input[type=radio]{
border: 0px;
width: 20px;
height: 2em;
cursor: pointer;
}
p{
font-family: 'Rokkitt',serif;
}
.quizContainer{
background-color: #000398;
border-radius: 8px;
width: 75%;
margin: auto;
margin-top: 80px;
padding-top: 5px;
position: relative;
}
.nextButton{
border-radius: 18px;
width: 150px;
height: 40px;
text-align: center;
background-color: #cc0000;
color: #fff;
font-family: 'Rokkitt',serif;
font-weight: bold;
position: relative;
margin: auto;
padding-top: 20px;
cursor: pointer;
}
.question{
font-family: 'Rokkitt',serif;
font-size: 2em;
width: 90%;
height: auto;
margin: auto;
border-radius: 6px;
background-color: #f2f205;
text-align: center;
color: #27a632;
}
.quizMessage{
background-color: peachpuff;
border-radius: 6px;
width: 30%;
margin: auto;
text-align: center;
padding: 2px;
font-family: 'Rokkitt',serif;
color: red;
}
.choiceList{
font-family: 'Rokkitt',serif;
color: blueviolet;
}