-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (35 loc) · 737 Bytes
/
Copy pathstyle.css
File metadata and controls
42 lines (35 loc) · 737 Bytes
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
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
#quiz-container {
width: 50%;
text-align: center;
}
#quiz {
margin-bottom: 20px;
}
.question {
margin-top: 20px;
font-size: 1.25rem;
margin-bottom: 20px;
}
.Answers-Container {
padding: 2px;
}
.Labels {
display: inline-block;
width: 500px;
padding: .75rem;
transition: box-shadow .3s;
margin: 10px;
box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.1) 0px 4px 6px -1px, rgba(255, 255, 255, 0.04) 0px 1px 0px inset;
text-align: left;
}
.Labels:hover {
box-shadow: 0 0 11px rgba(33,33,33,.2);
}