-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
59 lines (51 loc) · 1.02 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
@import url(https://fonts.googleapis.com/css?family=Oswald:700|Quattrocento);
* {
box-sizing: border-box;
}
body,html {
min-height: 100%;
height: 100%;
}
body {
align-items: center;
display: flex;
justify-content: center;
margin: 0;
background-color: #F2CD7C;
color: black;
font-family: Quattrocento, serif;
line-height: 1.8925;
@media (max-height: 450px) {
font-size: 10px;
}
}
.content {
position: relative;
background-image: url(img/cab-splash.png);
background-size: cover;
background-position: center;
max-width: 1100px;
z-index: 1;
padding: 4%;
text-align: justify;
}
p {
position: relative;
}
h1 {
font-family: Oswald;
font-size: 6.2em;
font-weight: bold;
letter-spacing: 5px;
line-height: 1.125;
text-transform: uppercase;
text-align: center;
margin-top: -35px;
}
#event-description {
margin: 400px 10px 0 10px;
font-family: Oswald;
font-size: 1em;
letter-spacing: 2px;
line-height: 1;
}