Last active
October 8, 2020 07:28
-
-
Save janrenn/4ac673ffd9bb4502e9f173429dd4ec95 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
> 0.3% | |
last 2 versions |
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(10px, 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; | |
} | |
@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(10px, env(safe-area-inset-left)); | |
background-clip: border-box; | |
-webkit-box-reflect: below 5px url(mask.png); | |
-webkit-filter: grayscale(50%); | |
filter: grayscale(50%); | |
word-break: break-word; | |
-webkit-hyphens: auto; | |
-moz-hyphens: auto; | |
-ms-hyphens: auto; | |
hyphens: auto; | |
} | |
.foo { | |
color: red; | |
} | |
.foo .bar { | |
color: green; | |
background: red; | |
} | |
.foo .baz { | |
color: gold; | |
} | |
.baz .foo { | |
color: crimson; | |
display: -webkit-box; | |
display: -webkit-flex; | |
display: -ms-flexbox; | |
display: flex; | |
-webkit-transition: all; | |
transition: all; | |
font-weight: 400; | |
} | |
a { | |
color: foobar; | |
} | |
@supports (display: flexbox) { | |
body { | |
display: flexbox; | |
} | |
.foo { | |
display: -webkit-box; | |
display: -webkit-flex; | |
display: -ms-flexbox; | |
display: flex; | |
-webkit-transition: all; | |
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