forked from RyanKadri/bookreads-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
41 lines (35 loc) · 703 Bytes
/
Copy pathstyles.css
File metadata and controls
41 lines (35 loc) · 703 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
.top-nav {
height: 56px;
padding: 12px 64px;
border-bottom: solid 1px #aaa;
box-sizing: border-box;
display: flex;
align-items: center;
background-color: #F4F1EA;
grid-area: header;
}
.top-nav h1 {
font-size: 24px;
color: #444;
display: inline-block;
}
.main-links ul, .supplemental-links ul {
display: inline-block;
margin: 0;
}
.main-links a, .supplemental-links a {
text-decoration: none;
color: hsl(200, 70%, 45%);
}
.main-links li, .supplemental-links li {
float: left;
margin-left: 24px;
text-decoration: none;
list-style: none;
}
.supplemental-links {
display: none;
}
.page-content {
grid-area: content;
}