-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
112 lines (91 loc) · 1.81 KB
/
styles.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
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap");
* {
font-family: 'Playfair Display';
color: #000000;
text-align: center;
box-sizing: border-box; /* counts padding within width */
}
html, body {
margin: 0;
padding: 0;
}
.nav ul {
margin: 0;
}
.main-header {
background-image: url("background image.jpg");
background-size: cover;
padding-bottom: 20px
}
.nav li {
display: inline;
}
.nav a {
display: inline-block; /* allows you to add padding to inline elements */
padding: .5em;
color: white;
text-decoration: none;
}
.nav a:hover {
background-color: rgba(255, 255, 255, 0.2)
}
.main-nav {
text-align: center;
font-size: 1.3em;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.main-nav li {
padding: 0 2%
}
.my-name-big {
text-align: center;
font-size: 4em;
margin: 0.25em;
color: white;
font-weight: normal;
text-shadow: 5px 3px black;
}
.my-name {
text-align: center;
font-size: 2em;
color: white;
font-weight: normal;
}
.content-section {
margin: 1em;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 0 1em;
}
.section-header {
text-align: center;
font-size: 2em;
}
.my-picture {
display: block;
margin-left: auto;
margin-right: auto;
}
.main-footer {
background-color: rgb(26, 26, 26);
color: white;
padding: .25em 0;
}
.main-footer-container {
display: flex;
align-items: center;
}
.main-footer-container ul {
flex-grow: 1;
text-align: end;
}
.footer-nav li {
padding: 0 0.5em;
}
.footer-nav img {
width: 30px;
height: 30px;
}
#map { height: 600px; }