Files
ticketbeast/resources/assets/less/typography/links.less
2017-02-10 10:30:55 -05:00

74 lines
1.0 KiB
Plaintext

a, .link {
font-weight: @font-weight-normal;
color: @text-dark;
text-decoration: none;
&:hover, &:focus {
color: darken(@text-dark, 15%);
text-decoration: underline;
}
&:focus {
.tab-focus;
}
}
.link-brand {
color: @text-brand;
&:hover, &:focus {
color: darken(@text-brand, 15%);
}
}
.link-brand-soft {
color: @text-brand-soft;
&:hover, &:focus {
color: darken(@text-brand-soft, 15%);
}
}
.link-underline {
text-decoration: underline;
}
.link-plain {
&:hover, &:focus {
text-decoration: none;
}
}
.link-soft {
color: @text-dark-soft;
&:hover, &:focus {
color: @text-dark;
}
}
.link-muted {
color: @text-dark-muted;
&:hover, &:focus {
color: @text-dark;
}
}
.link-light {
color: @text-light;
&:hover, &:focus {
color: @text-light;
}
}
.link-light-muted {
color: @text-light-muted;
&:hover, &:focus {
color: @text-light-soft;
}
}