-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuizApp.scss
54 lines (49 loc) · 1.2 KB
/
QuizApp.scss
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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
body{
background-color: #3498db;
font-family: 'Libre Baskerville', serif;
}
.main{
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
.box{
width: 40%;
// height: 300px;
border: none;
border-radius: 5px;
background-color: whitesmoke;
display: flex;
flex-direction: column;
gap: 30px;
.question{
margin-top: 10px;
}
.row{
margin-left: 0px;
display: flex;
flex-direction: column;
margin: 1rem;
margin-left: 4px;
margin-top: 10px;
gap: 30px;
#btn{
width: 100%;
padding: 10px;
background-color: #3498db;
font-size: 20px;
border: none;
border-radius: 5px;
// margin: 20px;
}
}
}
}