-
Notifications
You must be signed in to change notification settings - Fork 0
/
mystyle.css
61 lines (49 loc) · 1.09 KB
/
mystyle.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
/*Global*/
* {
margin: 0;
}
body {
font-family: 'Montserrat', sans-serif;
background-color: rgb(180, 62, 62);
color: black;
}
/*utilities*/
.container {
width: 80%;
margin-right: auto;
margin-left: auto;
}
/*header*/
header {
background-image: url(https://images.unsplash.com/photo-1489875347897-49f64b51c1f8?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxMjA3fDB8MXxzZWFyY2h8NHx8Y29kZSUyMGJhY2tncm91bmR8fDB8fHx8MTYyNzc4Mzg0OQ&ixlib=rb-1.2.1&q=80&w=1080);
height: 40vh;
background-position: center left;
background-size: cover;
}
header h1 {
font-size: 60px;
color: #ffcc00;
text-align: center;
text-transform: uppercase;
text-decoration: none;
letter-spacing: 25px;
word-spacing: 15px;
text-shadow: 2px 2px wheat;
}
/*menu*/
nav.menu {
background-color: #502c2c;
padding: 20px;
}
nav a {
display: inline-block;
margin-right: 10px;
text-decoration: none;
color: #ffcc00;
}
nav.menu a {
font-size: 16px;
}
footer nav a {
font-size: 12px;
}