-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnav-menu.css
More file actions
57 lines (46 loc) · 943 Bytes
/
nav-menu.css
File metadata and controls
57 lines (46 loc) · 943 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
.nav-links {
@apply bg-white fixed flex-grow h-screen inset-0 w-full;
}
@screen lg {
.nav-links {
@apply bg-transparent h-auto items-center pl-2 pr-2 pt-2 static w-auto;
}
}
.contact-link,
.nav-link {
@apply block font-bold p-4 text-base text-navy;
}
@screen lg {
.nav-link {
@apply inline-block mt-0;
}
}
.nav-link:active,
.nav-link:visited {
@apply text-navy;
}
.nav-link:hover, .nav-link:focus {
@apply text-red-light;
}
@screen lg {
.contact-link {
@apply bg-red -mt-12 inset-auto pt-16 rounded-b static text-white w-auto;
}
.contact-link:hover {
@apply bg-red-light text-white;
}
.contact-link:active,
.contact-link:visited {
@apply text-white;
}
.nav-link-alt {
@apply block font-bold p-4 text-base text-white;
}
.nav-link-alt:active,
.nav-link-alt:visited {
@apply text-white;
}
.nav-link-alt:hover, .nav-link-alt:focus {
@apply text-red-light;
}
}