-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
94 lines (82 loc) · 1.63 KB
/
home.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
* {
box-sizing: border-box;
}
html,
body {
background-color: hsl(240, 100%, 95%);
padding: 0;
margin: 0;
overflow-x: hidden;
min-width: 240px;
font-family: 'Lato', sans-serif;
font-weight: 500;
animation-name: rainbow;
animation-duration: 8s;
animation-iteration-count: infinite;
}
.landingscreen {
background-color: hsl(240, 100%, 85%);
text-align: center;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
animation-name: rainbow;
animation-duration: 8s;
animation-iteration-count: infinite;
}
@keyframes rainbow {
0% {background-color: hsl(0, 50%, 60%);}
25% {background-color: hsl(90, 50%, 60%);}
50% {background-color: hsl(180, 50%, 60%);}
100% {background-color: hsl(360, 50%, 60%);}
}
.landingpage__center {
overflow-x: hidden;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
width: 95%;
max-width: 750px;
}
.landingpage__center__title {
font-family: 'Oswald', sans-serif;
display: inline-block;
font-weight: 700;
font-size: 80px;
color: hsl(0, 0%, 90%);
}
.landingpage__center__mail {
font-family: 'Lato', sans-serif;
color: hsl(0, 0%, 25%);
font-size: 18px;
margin-bottom: 20px;
}
@media only screen and (max-width: 440px) {
.landingpage__center__title {
font-size: 20vw;
}
}
.unten {
}
.vote {
margin: 100vh auto 0 auto;
background-color: white;
}
.wrapper {
margin: 0 auto 0 auto;
padding: 30px 0 100px 0;
width: 90%;
max-width: 700px;
min-height: 506px;
}
.vote__header {
text-align: center;
}
h4 {
margin-bottom: 30px;
}