-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (51 loc) · 1.08 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300&display=swap');
*{
box-sizing: border-box;
}
.timer-container {
color: blueviolet;
}
body{
font-family: 'Poppins', sans-serif;
background-color: darkseagreen;
min-height: 10vh;
margin: 0px 50px 50px 50px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1{color: black;}
#timer {
font-size: 3em;
}
.quiz_container{
background-color: white;
width: 30%;
display: flex;
flex-direction: column;
align-items: left;
justify-content: center;
margin-top: 15%;
border: none;
border-radius: 4px;
box-shadow: 0 0 10px 5px rgb(170, 157, 157);
}
.quiz_container h2{
margin-left: 10%;
}
ul li {
list-style: none;
margin-bottom: 5%;
}
button{
background-color: dodgerblue;
color: white;
font-size: 1.3rem;
padding: 1rem;
border: none;
cursor: pointer;
}
button:hover{
background-color: dodgerblue;
}