1
0
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2025-07-24 20:31:05 +00:00

Initial commit

This commit is contained in:
2020-04-28 16:09:22 -05:00
commit 1100dbe947
192 changed files with 16066 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
// stylelint-disable declaration-no-important
// Typography
@mixin text-emphasis-variant($parent, $color) {
#{$parent} {
color: $color !important;
}
@if $emphasized-link-hover-darken-percentage != 0 {
a#{$parent} {
@include hover-focus {
color: darken($color, $emphasized-link-hover-darken-percentage) !important;
}
}
}
}