-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (59 loc) · 1004 Bytes
/
Copy pathstyle.css
File metadata and controls
62 lines (59 loc) · 1004 Bytes
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
* {
margin: 0;
padding: 0;
font-family: "Montserrat", sans-serif;
}
body {
line-height: 1.6;
}
header {
padding-top: 0.5em;
padding-bottom: 0.5em;
border: 1px solid #a2a2a2;
background-color: #f4f4f4;
box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.75);
border-radius: 5px;
}
header a {
color: #34495e;
text-decoration: none;
padding: 10px 15px;
text-transform: uppercase;
text-align: center;
display: block;
}
header ul {
list-style: none;
margin-top: 5px;
}
header ul a {
color: #34495e;
font-size: 0.99em;
}
header ul a:hover {
color: #718daa;
}
header h1 {
font-size: 1.5em;
}
@media (max-width: 770px) {
ul.nav-social {
display: flex;
justify-content: center;
}
}
@media (min-width: 770px) {
header, ul {
display: flex;
}
header {
flex-direction: column;
align-items: center;
}
}
@media (min-width: 1050px) {
header {
flex-direction: row;
justify-content: space-between;
}
}/*# sourceMappingURL=style.css.map */