forked from constructorlabs/react-quizmachine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (56 loc) · 854 Bytes
/
style.css
File metadata and controls
66 lines (56 loc) · 854 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
65
66
html{
max-height: 100vh;
}
#opening-video{
width: 100vw;
align-self: center;
}
body{
background-color: #f5e389;
margin: 0;
font-family: 'Kodchasan', sans-serif;
}
.score{
background-color: #37678d;
color: white;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
padding: 1em;
}
h2{
margin-bottom: 0;
}
main{
padding: 1em;
}
h4{
margin: 0;
}
ul{
list-style-type: none;
display: flex;
flex-direction: column;
padding: 0;
align-self: center;
}
li{
border: 2px solid #37678d;
border-radius: 5px;
margin-bottom: .5em;
padding: .2em;
}
.results{
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
#end-video{
max-height: 35vh;
height: 105%;
max-width: 100vw;
align-self: center;
margin-top: 1em;
}