-
Notifications
You must be signed in to change notification settings - Fork 0
/
_base.scss
52 lines (44 loc) · 972 Bytes
/
_base.scss
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
@charset "UTF-8";
// $var: unquote("#{getConfigFile()}");
// @import $var;
// @if getEnvironment() == "development"
$cdn_img: "//img.cdn.dev";
$img: "//img.abhishekmunie.dev";
@import "compass";
@import "compass/css3";
@mixin vendorize($property, $value...) {
-webkit-#{$property}: $value;
-khtml-#{$property}: $value;
-moz-#{$property}: $value;
-ms-#{$property}: $value;
-o-#{$property}: $value;
#{$property}: $value;
}
@mixin clear() {
&:before, &:after {
content: "\0020";
display: block;
height: 0;
overflow: hidden;
}
&:after {
clear: both;
}
}
@mixin linkTextOffscreen() {
text-indent: -9999px;
overflow: hidden;
text-decoration: none;
display: block;
font-size: 0;
text-align: start;
}
@mixin hoverActiveFocus($property, $value) {
&:hover, &:active, &:focus {
#{$property}: $value;
}
}
.hidden {
display: none !important;
visibility: hidden;
}