-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.less
39 lines (38 loc) · 1.1 KB
/
index.less
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
#app{
--borderColor: whitesmoke;
#app-main{
.nav.nav-pills.nav-fill{
background-color: transparent
}
.nav-pills:after{
content: none
}
.nav-link.active{
color:rgba(255,255,255,.8);
box-shadow: none;
}
.nav-link::after{
border-radius: 0;
inset-block-end: -5px;
inset-inline: 100%;
border-bottom: 2px solid var(--borderColor);
transition: inset-inline 1s var(--appleEase),
display 1s var(--appleEase);
}
.nav-link:hover{
box-shadow: none;
color:rgba(255,255,255,.8);
&::after{
background: transparent;
border-bottom: 2px solid var(--borderColor);
inset-inline: 30%;
transition: inset-inline 0.5s var(--appleEase);
}
}
.nav-link.active::after{
background: transparent;
border-bottom: 2px solid var(--borderColor);
inset-inline: 10%;
}
}
}