Created
October 8, 2020 07:32
-
-
Save janrenn/53b979523b326ec556b11956f31ffb2a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.foo { | |
width: max(100px, env(safe-area-inset-left)); | |
background-clip: border-box; | |
-webkit-box-reflect: below 5px url(mask.png); | |
filter: grayscale(50%); | |
word-break: break-word; | |
hyphens: auto; | |
transform: rotate(30deg); | |
} | |
/* https://autoprefixer.github.io/ */ | |
@mixin foobar { | |
display: flex; | |
transition: all; | |
} | |
@mixin baz { | |
@include foobar; | |
font-weight: 400; | |
} | |
.foo { | |
color: red; | |
.bar { | |
color: green; | |
background: red; | |
} | |
& .baz { | |
color: gold; | |
} | |
.baz & { | |
color: crimson; | |
@include baz; | |
} | |
} | |
$foo: foobar; | |
a { | |
color: $foo; | |
} | |
@supports ( display: flexbox ) { | |
body { display: flexbox; } | |
.foo { @include foobar; } | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.foo { | |
width: max(100px, env(safe-area-inset-left)); | |
background-clip: border-box; | |
-webkit-box-reflect: below 5px url(mask.png); | |
filter: grayscale(50%); | |
word-break: break-word; | |
hyphens: auto; | |
transform: rotate(30deg); | |
} | |
/* https://autoprefixer.github.io/ */ | |
.foo { | |
color: red; | |
} | |
.foo .bar { | |
color: green; | |
background: red; | |
} | |
.foo .baz { | |
color: gold; | |
} | |
.baz .foo { | |
color: crimson; | |
display: flex; | |
transition: all; | |
font-weight: 400; | |
} | |
a { | |
color: foobar; | |
} | |
@supports (display: flexbox) { | |
body { | |
display: flexbox; | |
} | |
.foo { | |
display: flex; | |
transition: all; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sass": { | |
"compiler": "dart-sass/1.26.10", | |
"extensions": {}, | |
"syntax": "SCSS", | |
"outputStyle": "expanded" | |
}, | |
"autoprefixer": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment