mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-12 16:29:44 +00:00
5b134ac767
* Fixes #357 by upgrading to fontawesome-free 6.3.0 * Replaced the existing font-awesome files with new ones * Updated references in _variables.scss ro reference theme location * Tweaked social.html to remove redundant css class * Updating netlify.toml to more modern values --------- Co-authored-by: Victoria Drake <24644237+victoriadrake@users.noreply.github.com>
32 lines
633 B
SCSS
Generated
32 lines
633 B
SCSS
Generated
// stacking icons
|
|
// -------------------------
|
|
|
|
.#{$fa-css-prefix}-stack {
|
|
display: inline-block;
|
|
height: 2em;
|
|
line-height: 2em;
|
|
position: relative;
|
|
vertical-align: $fa-stack-vertical-align;
|
|
width: $fa-stack-width;
|
|
}
|
|
|
|
.#{$fa-css-prefix}-stack-1x,
|
|
.#{$fa-css-prefix}-stack-2x {
|
|
left: 0;
|
|
position: absolute;
|
|
text-align: center;
|
|
width: 100%;
|
|
z-index: var(--#{$fa-css-prefix}-stack-z-index, #{$fa-stack-z-index});
|
|
}
|
|
|
|
.#{$fa-css-prefix}-stack-1x {
|
|
line-height: inherit;
|
|
}
|
|
|
|
.#{$fa-css-prefix}-stack-2x {
|
|
font-size: 2em;
|
|
}
|
|
|
|
.#{$fa-css-prefix}-inverse {
|
|
color: var(--#{$fa-css-prefix}-inverse, #{$fa-inverse});
|
|
}
|