-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (59 loc) · 1.04 KB
/
style.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
/* Global reset */
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: #7f53ac;
background-image: linear-gradient(315deg, #7f53ac 0%, #647dee 74%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: Arial, Helvetica, sans-serif;
}
ul {
list-style-type: none;
/* cursor: pointer; */
}
ul li {
font-size: 1.2rem;
margin: 1rem 0;
/* cursor: pointer; */
}
ul li label {
cursor: pointer;
}
h2 {
padding: 1rem;
text-align: center;
}
.container {
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
width: 600px;
max-width: 100%;
margin: 1rem;
}
.quiz-header {
padding: 4rem;
}
button {
background-color: #4d85ec;
border: none;
color: #ffffff;
font-size: 1.5rem;
width: 100%;
padding: 1.5rem;
font-family: inherit;
outline: none;
cursor: pointer;
}
button:hover {
background-color: #3472e6;
}
.hide {
display: none;
}