32 lines
501 B
SCSS
32 lines
501 B
SCSS
a {
|
|
cursor: pointer;
|
|
color: $blue;
|
|
transition: 0.2s;
|
|
|
|
&:hover{
|
|
color: $dark-blue;
|
|
}
|
|
|
|
&.noline {
|
|
text-decoration: none;
|
|
|
|
&.undertable {
|
|
margin-left: 17px;
|
|
}
|
|
}
|
|
|
|
&.help {
|
|
text-decoration: none;
|
|
font-weight: $extra-bold;
|
|
}
|
|
|
|
&.read-more{
|
|
text-decoration: none;
|
|
|
|
.faicon:before{
|
|
padding-left: 8px;
|
|
font-size: 8px;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
} |