blob: 7dd1cce2b04487fd1b6fcb4d6a9db9b6045c2652 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
@import "utilities/linear-gradient";
@mixin background-color-with-alpha($color, $alpha) {
background-color: $color;
background-color: rgba($color, $alpha);
}
@mixin transform($transform) {
transform: $transform;
}
@mixin transition($string: $transition--default) {
transition: $string;
}
@mixin hide-visually {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
@mixin border-radius($radius) {
border-radius: $radius;
}
@mixin animation($string: spin 1s infinite linear) {
animation: $string;
}
@mixin display-flex($alignment: '', $justification: '') {
display: flex;
@if $alignment != '' {
align-items: $alignment;
}
@if $justification != '' {
justify-content: $justification;
}
}
@mixin flex($value) {
flex: $value;
}
// https://developer.mozilla.org/en-US/docs/Web/CSS/user-select
// https://stackoverflow.com/questions/826782/how-to-disable-text-selection-highlighting-using-css (version: January, 2017)
@mixin user-select($string: none) {
/* iOS Safari */
-webkit-touch-callout: $string;
/* Safari, and Chrome 53 */
-webkit-user-select: $string;
/* Non-prefixed version, currently supported by Chrome and Opera */
user-select: $string;
}
// https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
@mixin box-shadow ($string: 0 0 1em rgba(0, 0, 0, 0.25)) {
box-shadow: $string;
}
@mixin order($value) {
order: $value;
}
%fill-parent {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
%icon-default {
@extend %fill-parent;
text-align: center;
}
|