-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathheader.css
More file actions
61 lines (48 loc) · 745 Bytes
/
header.css
File metadata and controls
61 lines (48 loc) · 745 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
a{
text-decoration: none;
color: black;
}
a:hover {
color: red;
}
.logo-img-new{
display: inline;
}
#logo-new{
height: 3em;
width:auto;
}
.Navbar {
width: 100%;
position: fixed;
background-color: rgba(102, 102, 102,0.3);
display: flex;
padding: 16px;
font-family: sans-serif;
color: black;
}
.Navbar__Link {
padding-right: 8px;
padding-top: 1em;
font-size: 1em;
}
.Navbar__Items {
display: flex;
text-align: center;
}
.Navbar__Items, .Navbar {
flex-direction: column;
}
.Navbar__Items {
display:none;
color: black;
}
.Navbar__ToggleShow {
display: flex;
}
.Navbar__Link-toggle {
align-self: flex-end;
display: initial;
position: absolute;
cursor: pointer;
}