nav-menu.css
1.6 KB
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
75
76
77
78
79
80
81
82
83
84
85
.swp-nav-menu {
font-family: 'Inter', sans-serif;
font-style: normal;
background-color: var(--white);
margin: 0;
padding: 0 22px;
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 44px;
}
.swp-nav-item {
margin-bottom: 0;
position: relative;
cursor: pointer;
}
.swp-nav-link {
display: block;
font-weight: 500;
text-decoration: none;
font-size: 15px;
line-height: 1.3;
color: rgba(var(--neutralRGB), 0.6);
padding: 20px 0;
}
.swp-nav-link:hover,
.swp-nav-link:focus,
.swp-nav-link:active {
color: rgba(var(--neutralRGB), 0.6);
}
.swp-nav-link:hover::after,
.swp-nav-link:focus::after,
.swp-nav-link:active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background-color: rgba(var(--neutralRGB), 0.2);
border-radius: 2px;
}
.swp-nav-link--active {
font-weight: 700;
font-size: 16px;
line-height: 1.3;
color: var(--neutral)
}
.swp-nav-link--active::after,
.swp-nav-link--active:hover::after,
.swp-nav-link--active:focus::after,
.swp-nav-link--active:active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background-color: var(--accent);
border-radius: 2px;
}
.swp-nav-link:focus,
.swp-nav-link:active {
-webkit-box-shadow: none;
box-shadow: none;
}
@media only screen and (max-width: 767px) {
.swp-nav-menu {
display: block;
}
.swp-nav-item {
margin-right: 30px;
display: inline-block;
}
}