-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.css
48 lines (46 loc) · 873 Bytes
/
menu.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
.head-navbar{
width: 100%;
/* height: 15%; */
padding: 40px;
position: fixed;
z-index: 1;
transition: 100ms ease-in-out;
top: 0;
}
.navbar-logo{
display: inline-block;
}
.navbar-logo img{
width: 50px;
}
.head-menu{
display: inline-block;
list-style-type: none;
margin: 0px;
margin-left: 3%;
padding: 0px;
}
.head-menu>li{
text-decoration: none;
color: var(--light-grey);
font-weight: 300;
font-size: 18px;
display: inline-block;
margin-right: 20px;
}
.head-navbar--shrink{
transition: 100ms ease-in-out;
padding: 15px;
/* height: 10%; */
background: var(--green);
}
.head-download-button{
float: right;
}
.head-download-button .mv-button{
background: var(--light-grey);
color: var(--light-green);
}
.head-download-button > .github-logo{
margin-right: 20px;
}