-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathquizstyle.css
94 lines (85 loc) · 1.45 KB
/
quizstyle.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
body {
background-color: #f2efeb;
display: flex;
align-items: center;
justify-content: center;
padding-top: 7%;
font-family: Sedan;
font-size: 22px;
}
.container{
display: flex;
flex-direction: column;
align-self: flex-start;
margin-bottom: 3px;
}
.heading{
font-family: Sedan;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 36px;
letter-spacing: 0.01em;
position:absolute;
left:200px;
text-align: left;
}
#question {
align-items: left;
}
.quizch{
position:absolute;
top:150px;
left:120px;
padding:100px;
}
.quizch label{
margin: 20px;
}
.choices{
margin:10px;
}
#timer{
position:fixed;
right:260px;
bottom:230px;
font-size: 26px;
}
.buttons{
position:absolute;
right:150px;
bottom:150px;
}
#pre{
background-color: #ff9900;
border: none;
color: rgb(10, 10, 10);
padding: 15px 60px;
text-align: center;
display: flex;
display: grid;
text-decoration: none;
display: inline-block;
font-size: 18px;
}
#pre:hover {
background-color: white;
border: 2px solid rgb(251, 14, 14);
}
#next{
background-color: #ff9900;
border: none;
color: rgb(10, 10, 10);
padding: 15px 60px;
text-align: center;
display: flex;
display: grid;
text-decoration: none;
display: inline-block;
font-size: 18px;
}
#next:hover {
background-color: white;
border: 2px solid rgb(251, 14, 14);
}
}