Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_mixins.scss « scss « assets - github.com/monkeyWzr/hugo-theme-cactus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc0eda61f6895364d2e546c8ecc1350e782acba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@mixin antialias() {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@mixin hyphens($value) {
  hyphens: $value;
  -moz-hyphens: $value;
  -ms-hyphens: $value;
  -webkit-hyphens: $value;
}
@mixin underline($size, $color) {
  background-image: linear-gradient(transparent, transparent $size, $color $size, $color);
  background-position: bottom;
  background-size: 100% 6px;
  background-repeat: repeat-x;
}
@mixin no-select() {
  user-select: none;
  -khtml-user-select: none;
}