-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (52 loc) · 1.07 KB
/
Copy pathstyle.css
File metadata and controls
53 lines (52 loc) · 1.07 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
/* coding with hacktober*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display+swap");
*{
box-sizing: border-box;
}
body{
background-color: color #beb8c6;
background-image:linear-gradient(315deg, black 0%, black 100%);
font-family:'Times New Roman', Times, serif;
display:flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
}
.quiz-container{
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px 2px rgba(100, 100, 100,0.1);
width: 600px;
overflow:hidden;
}
.quiz-header{
padding: 4rem;
}
h2{
padding: 1rem;
text-align:center;
margin: 0;
}
ul li label{
cursor: pointer;
}
button{
background-color:aqua;
color: rgb(10, 2, 2);
border:none;
display: block;
width:100%;
cursor: pointer;
font-size: large;
font-family: inherit;
padding: 1.3rem;
}
button:hover{
background: #04adc4;
}
button:focus{
outline:none;
background-color:aqua;
}