-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.css
74 lines (62 loc) · 914 Bytes
/
navbar.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
/*the navbar css*/
body{
margin:0;
}
#navbar{
position:fixed;
top:0;
margin-bottom:0;
width:100%;
height:5vw;
background-color:black;
padding:1.5vw;
box-sizing:border-box;
text-align:right;
z-index:999;
}
#hamburg
{
display:none;
}
.top{
padding:1.5vw;
text-decoration:underline;
text-decoration-color:black;
font-size:1.4vw;
font-family:Raleway;
transition: text-decoration-color 1s;
transition-timing-function: linear;
}
.mylogo{
float:left;
height:5vw;
width:5w;
font-family:raleway;
font-size:1vw;
letter-spacing:1vw;
color:white;
margin-left:1vw;
margin-top:-0.8vw;
}
a:link{
color:white;
}
a:hover{
text-decoration-color:white;
}
a:active{
color:yellow;
}
a:visited{
color:yellow;
}
.mylogo > a:link{
color:inherit;
text-decoration:none;
}
.mylogo > a:hover{
color:inherit;
}
.mylogo > a:visited{
color:inherit;
}