-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
93 lines (76 loc) · 1.25 KB
/
main.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
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Lato', 'sans-serif';
}
.container {
width: 70%;
margin-left: auto;
margin-right: auto;
}
div.hero {
background-image: url(img/header.jpg);
height: 50vh;
background-position: center center;
background-size: cover;
}
div.header-content {
padding-top: 2rem;
}
nav.social-media {
text-align: center;
}
nav.social-media a {
color: white;
font-size: 2rem;
margin-right: 1rem;
}
.footer {
text-align: center;
padding-top: 2rem;
}
h1 {
color: white;
font-size: 6vh;
text-transform: uppercase;
text-align: center;
}
p.slogan {
color: white;
}
div.information div {
display: flex;
flex-direction: row;
justify-content: space-between;
}
p.city, p.date {
color: white;
font-size: 30px;
font-weight: 300;
text-transform: uppercase;
}
p.city i, p.date i {
color: white;
font-size: 40px;
}
.nav-bar {
background-color: black;
padding: 20px 0;
display: flex;
justify-content: flex-end;
}
nav.menu a {
font-family: 'Oswald', sans-serif;
color: white;
font-size: 1.3em;
text-transform: uppercase;
text-decoration: none;
padding: 10px 10px;
display: inline-block;
width: auto;
display: inline-block;
text-align: center;
margin: 0 10px 0 0;
}