-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.css
42 lines (38 loc) · 877 Bytes
/
.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
/* * mobile menu */ */
/* Style the navigation menu */
.topnav {
background-color: var(--text_white);
border-radius: 24px;
display: flex;
flex-direction: column;
margin-top: auto;
flex-wrap: wrap-reverse;
background-image: url(./img/arrow-down-svgrepo-com.svg);
background-repeat: no-repeat;
background-size: 24px;
background-position: right;
}
/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
display: none;
}
/* Style navigation menu links */
.topnav a {
color: black;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
display: block;
}
/* Add a grey background color on mouse-over */
.topnav a:hover {
width: 100%;
border-radius: 24px;
background-color: #ddd;
color: black;
}
/* Style the active link (or home/logo) */
.active {
background-color: #04AA6D;
color: white;
}