-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (70 loc) · 1.15 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
70
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
color: #17252a;
}
.section1 {
height: 100vh;
width: 100%;
background-color: #25274d;
display: flex;
justify-content: center;
align-items: center;
}
.container {
height: auto;
width: 40%;
background-color: #aaabb8;
padding: 30px 30px 20px;
border-radius: 15px;
}
.header {
padding: 10px 0;
border-bottom: 2px solid #2e3944;
}
.difficulty {
padding: 20px 0;
display: flex;
flex-direction: column;
gap: 15px;
margin-top: 10px;
}
.level {
display: flex;
justify-content: space-between;
}
/* #meter{
} */
.category {
margin-top: 10px;
}
.section2 {
height: 100vh;
width: 100%;
background-color: #25274d;
display: flex;
justify-content: center;
align-items: center;
}
.ques {
padding: 10px 0;
margin: 10px;
}
.opt {
width: 100%;
padding: 10px;
font-weight: 550;
border: 1px solid #25274d;
border-radius: 5px;
}
.option {
display: flex;
flex-direction: column;
gap: 10px;
}
.opt:hover {
background-color: rgb(63, 63, 63);
color: rgb(128, 126, 126);
}