scontecss
v1.0.7
Published
scss-mixin to write @content with custom variables
Downloads
2
Readme
Scontecss
scss-mixin to write @content with custom variables
Install
# bash
npm install scontecss --save-dev
// scss
@import "~/scontecss/scontecss";
post-css (BETA)
@mixin scontecss {
font-size: $.fontSize.h1;
line-height: $.lineHeight.h1;
font-family: $.fontFamily.serif;
font-weight: $.fontWeight.sans.normal;
}
Use (simple)
$tst: green;
body {
@include scontecss($tst, (
color: "$",
));
}
results in
body {
color: green;
}
Use (complex)
$tst: (
color: green,
width: 100%,
);
body {
@include scontecss($tst, (
color: "$.color",
width: "$.width",
));
}
results in
body {
color: green;
width: 100%;
}
Breakpoint
If you wanna have a flexible breakpoint handling. Check ./scontecss-mediaquery.scss
.
// definition of the breakpoints
$breakpoints: (
default: 0,
tablet: 26rem,
desktop: 54rem,
);
// definition of colors
$colors: (
default: gray,
tablet: green,
desktop: red,
);
// Use
body {
@include scontecss-mediaquery($colors, (
background-color: "$",
));
}
results in
body {
background-color: gray;
}
@media screen and (min-width: 26rem) {
body {
background-color: green;
}
}
@media screen and (min-width: 54rem) {
body {
background-color: red;
}
}