-
Notifications
You must be signed in to change notification settings - Fork 0
/
new.css
77 lines (70 loc) · 1.41 KB
/
new.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
*{
box-sizing :border-box;
/* display: flex; */
}
body{
/* background-color: white; */
background: linear-gradient(to bottom, grey, black);
background-repeat: no-repeat;
/* background-position: center; */
background-attachment:fixed ;
background-size: cover;
font-family: 'poppins', 'sans-serif';
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
height: auto;
/* overflow: hidden; */
margin: 37px;
}
.quiz-container{
background-color: black;
border: 5px solid red;
color: white;
border-radius: 10px;
box-shadow: 0 0 20px 2px;
width: 600px;
/* height: 90vh; */
overflow: hidden;
}
.quiz-header{
padding: 40px;
}
h2{
padding: 40px;
text-align: center;
margin: 0;
}
ul{
list-style: none;
}
ul li{
font-size: 20px;
padding: 10px;
/* border: 2px solid red;
background-color: black; */
border-radius: 5px;
box-shadow: 0 0 10px 2px;
}
ul li label{
cursor: pointer;
}
#btnSubmit{
background-color: red;
color: white;
border: none;
padding: 20px;
border-radius: 5px;
display: block ;
width: 100%;
font-size: 20px;
font-family: inherit;
}
#btnSubmit:hover{
background-color: orangered;
}
#btnSubmit:focus{
outline: none;
background-color: green;
}