-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
73 lines (66 loc) · 1.05 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
html{
width: 100vw;
height: 100vh;
top: 0;
overflow-x: hidden;
font-family: "Cardo";
}
body{
width: 100%;
height: 100%;
top: 0;
left: 0;
padding: 0;
margin: 0;
background-color: #eef2f5;
}
.small{
position: fixed;
width: 100%;
height: 10%;
left: 0;
background-color: #17245c;
color: white;
line-height: 10vh;
text-align: center;
}
.header{
top: 0;
font-size: 5vmin;
}
.footer{
top: 90vh;
font-size: 2.5vmin;
}
.container{
position: absolute;
width: 80vw;
height: 60vh;
top: 20vh;
left: 10vw;
border: .5vmin solid #17245c;
text-align: center;
}
input, select{
position: relative;
display: block;
top: 20%;
width: 20%;
height: 12%;
padding: 0;
margin: 0;
display: inline-block;
font-family: "Open Sans";
color: #17245c;
font-size: 1.2em;
}
.answer{
position: absolute;
width: 60%;
height: 20%;
left: 20%;
top: 55%;
text-align: center;
font-size: 4.5vmin;
color: black;
}