39 lines
736 B
SCSS
Executable File
39 lines
736 B
SCSS
Executable File
@mixin media($size) {
|
|
@media screen and (max-width: $size) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin font-size($px) {
|
|
font-size: $px + px;
|
|
font-size: #{$px / $base-font-size}rem;
|
|
}
|
|
|
|
@mixin background-size($size) {
|
|
-webkit-background-size: $size;
|
|
-moz-background-size: $size;
|
|
-o-background-size: $size;
|
|
background-size: $size;
|
|
}
|
|
|
|
@mixin font-smoothing {
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-smoothing: antialiased;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
@mixin placeholder {
|
|
::-webkit-input-placeholder {
|
|
@content;
|
|
}
|
|
:-moz-placeholder {
|
|
@content;
|
|
}
|
|
::-moz-placeholder {
|
|
@content;
|
|
}
|
|
:-ms-input-placeholder {
|
|
@content;
|
|
}
|
|
} |