forked from 24c02/saycheese
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav.css
57 lines (50 loc) · 886 Bytes
/
nav.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
header {
z-index: 999;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 2rem;
background-color: black;
display: flex;
flex-direction: row;
align-items: top;
justify-content: space-between;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: end;
column-gap: 3rem;
margin-left: 1rem;
height: 1.75rem;
color: white;
}
.navbar-link {
font-size: 1.25rem;
color: white;
text-decoration: none;
}
.navbar-link:visited {
color: white;
}
.navbar-link:link {
color: white;
}
.links {
top: 0;
right: 0;
height: 2.5rem;
padding: 0.25rem;
border-left: 2px solid black;
border-bottom: 2px solid black;
background-color: white;
border-radius: 0 0 0 0.5rem;
z-index: 1000;
}
.links img {
height: 100%;
}
.links > a {
height: 100%;
}