-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.css
More file actions
86 lines (68 loc) · 1.2 KB
/
setup.css
File metadata and controls
86 lines (68 loc) · 1.2 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
77
78
79
80
81
82
83
84
85
86
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Montserrat", sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 90vh;
flex-direction: column;
overflow: hidden;
background-color: #D6DAC8;
}
li {
list-style: none;
}
#quiz{
background-color: #fff;
width: 400px;
border-radius: 10px;
}
.quiz-header {
padding: 25px 35px;
}
li {
margin: 10px 0;
}
h2 {
text-align: center;
color: #496989;
font-size: 1.2rem;
}
#submit,.sub {
border: 0;
width: 100%;
padding: 15px 0;
font-weight: 500;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
background-color: #5356FF;
color: #fff;
transition: .2s;
font-size: 1.3rem;
cursor: pointer;
}
.sub{
/* visibility: hidden;
height: 0;
width: 0;
transform: scale(0); */
display: none;
}
#submit:hover {
background-color: #378CE7;
}
label {
cursor: pointer;
}
p{
text-align: center;
margin: 30px 0;
}
a{
text-decoration: none;
}