forked from zero-to-mastery/travel-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (42 loc) · 749 Bytes
/
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
body {
font-family: 'Lato', 'Arial', sans-serif;
background: url(src/hero-pic.jpg) no-repeat center center fixed;
background-size: cover;
}
.display-4, .lead {
font-family: 'Pacifico', cursive;
}
p {
font-size: 1.3em;
}
.jumbotron {
text-align: center;
color: #fff;
padding-top: 25%;
}
.nav ,.nav-link, .nav-link-active{
font-family: "Courgette";
font-size: 20px;
}
#map {
width: 100%;
height: 400px;
background-color: grey;
}
.center {
text-align: center;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.box {
background-color: rgba(0, 0, 0, 0.4);
border: 1px solid #4CAF50;
border-radius: 10px;
padding: 0 10px;
}
h2 {
color: #ffffff
}