-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (90 loc) · 1.74 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
::-webkit-scrollbar {
width: 1px;
color: transparent;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: transparent;
border-radius: 20px;
border: 1px solid transparent;
background-clip: content-box;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Nunito', sans-serif;
}
.bd{
border: 5px solid #483D8B;
}
body{
background: url(/asset/img/Aurora\ -\ 61.png) no-repeat;
background-size: cover;
display: flex;
justify-content: center;
width: 100%;
align-items: center;
}
.contain{
width: 100%;
height: 100%;
}
.category{
background-color: rgba(137, 43, 226, 0.285);
width: 100%;
height: 5vh;
display: flex;
justify-content: space-around;
position: fixed;
}
.cate-item{
padding: 0 20px;
}
.cate-item:hover{
cursor: pointer;
background-color: rgba(204, 204, 204, 0.21);
color:gold;
}
.quiz-list{
width: 100%;
display: flex;
justify-content:space-evenly;
flex-wrap: wrap;
padding: 0px 40px;
margin-top: 10vh;
row-gap: 50px;
}
.quiz-item{
width: 180px;
height: 20vh;
border-radius: 10px;
margin: 0px 30px;
display: flex;
flex-direction: column;
align-items: center;
}
.quiz-ques{
width: 100%;
height: 70%;
padding-top: 20px;
}
.quiz-ques h1{
font-size: 50px;
text-align: center;
}
input{
width: 80%;
height: 30%;
font-size: 50px;
text-align: center;
border: none;
border-radius: 10px;
background-color: rgba(204, 204, 204, 0.489);
}
footer h1{
text-align: center;
padding: 50px 0px;
}