blob: 949c707e42959bb7ff02287c57c8123f7cab1157 (
plain)
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
|
@import (reference) "../variables";
@import (reference) "../mixins";
a {
border-bottom: 1px solid @lightBlue;
color: @darkBlue;
cursor: pointer;
outline: none;
text-decoration: none;
.trans;
&:hover {
color: @blue;
}
&:active, &:focus {
color: @darkBlue;
}
}
.link-base-color {
border-color: mix(@baseFontColor, @barBackgroundColor, 20%);
color: @baseFontColor;
&:hover {
border-bottom-color: @lightBlue;
color: @blue;
}
&:active, &:focus {
border-bottom-color: @lightBlue;
color: @darkBlue;
}
}
.link-no-underline {
border-bottom: none;
}
|