-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (53 loc) · 1012 Bytes
/
style.css
File metadata and controls
64 lines (53 loc) · 1012 Bytes
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
*{
margin: 0;
padding: 0;
}
body{
background-color: rgb(149, 149, 209);
}
.container{
/* border: 2px solid black; */
height: 70vh;
width: 100vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.heading{
/* border: 2px solid blue; */
display: flex;
justify-content: center;
align-items: center;
font-size: 5vmin;
}
#question{
font-size: 4vmin;
}
.questionBox{
background-color: blueviolet;
border-radius: 10px;
font-size: 3vmin;
/* border: 2px solid brown; */
height: 60%;
width: 55vw;
padding-left: 15px;
}
.answers{
/* border: 2px solid rgb(42, 165, 61); */
margin: 15px;
cursor: pointer;
padding-left: 5px;
}
.submit{
border: 2px solid rgb(42, 165, 61);
display: flex;
justify-content: center;
align-items: center;
}
#submit-btn{
margin-top: 10px;
font-size: 2.5vmin;
padding: 10px;
border-radius: 10%;
}