UNPKG

848 BSCSSView Raw
1@use '../internal' as *;
2
3$generate-utility: should-generate-classes($LINKS);
4
5@if $generate-utility {
6 /* LINKS */
7
8 a {
9 color: $cirrus-link;
10 font-weight: 600;
11 padding: 2px;
12 text-decoration: none;
13 transition: all 0.3s;
14
15 &:hover {
16 color: $cirrus-link-dark;
17 transition: all 0.3s;
18 }
19
20 &.underline {
21 text-decoration: underline;
22 }
23 }
24
25 .subtitle a {
26 padding: 0; /* Removes weird offset in subtitle links */
27 }
28
29 #{$header-selectors},
30 article,
31 blockquote {
32 & a {
33 display: inline;
34 }
35 }
36
37 /* Remove uneeded space since buttons have their own padding */
38 a .btn,
39 a button,
40 [type='submit'] a {
41 margin-bottom: 0;
42 }
43}