This repository has been archived by the owner on Jan 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (107 loc) · 1.96 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
body {
box-sizing: border-box;
font: 16px/1 "Actor",sans-serif;
letter-spacing: 0.48px;
background: #fff url("img/poster.jpg") 49.83% 97.53% fixed;
background-size: cover;
text-align: center;
padding: 98px;
}
/* koppen */
h1, h2, h3 {
text-transform: uppercase;
}
h1 {
color: white;
font: normal 4em "Cabin";
}
h2 {
color: #9d1c20;
font: 700 1.5em "Cantarell";
}
h3 {
color: #1b65bc;
font-family: "Cantarell";
}
h1, h2, h3, p {
box-sizing: border-box;
padding-left: 10%;
padding-right: 10%;
}
p {
color: white;
font: normal 18px "Cantarell";
}
p:last-of-type {
margin-bottom: 98px;
}
img {
box-sizing: border-box;
width: 100%;
padding: 0 10% 98px 10%;
}
#thema {
background-position: 40% 38.31%;
}
#etiquette {
background-image: url('img/poster-blur.jpg');
background-position: 37.39% 46.44%;
}
ul {
position: fixed;
bottom: 25px;
left: 0;
right: 0;
margin: 0;
padding: 0;
list-style: none;
/*flex*/
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: flex-end;
}
li > a {
display: inline-block;
box-sizing: border-box;
font: 700 14px "Cantarell";
color: white;
text-transform: uppercase;
background: #7DB06F;
transition: background-color 0.2s ease-in-out 0s;
min-height: 32px;
line-height:32px;
padding: 3px 31px;
border-radius: 2px;
text-decoration: none;
margin: 5px 0;
}
li > a:hover {
background: #6A9D5C;
}
@media (max-width: 768px) {
ul {
/* Items go in column */
flex-direction: column;
align-items: center;
}
body {
padding: 0;
}
img {
padding: 10px;
padding-bottom: 222px;
}
iframe {
width: 100vw;
height: 56.25vw;
margin-top: 10%;
margin-bottom: 222px;
}
}