Created
March 19, 2021 20:19
-
-
Save skhashaev/f5ebc20d40cd234fb847f9bc718ab00d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
/* --- Variables --- */ | |
// $base-color: #c6538c; | |
// $border-dark: rgba($base-color, 0.88); | |
// .alert { | |
// border: 1px solid $border-dark; | |
// } | |
/* Sass variables are not CSS variables */ | |
// $variable: value 1; | |
// .rule-1 { | |
// value: $variable; | |
// } | |
// $variable: value 2; | |
// .rule-2 { | |
// value: $variable; | |
// } | |
/* Default values */ | |
// $black: #000 !default; | |
// $black: #fff !default; | |
// .code { | |
// background: $black; | |
// } | |
/* Scope */ | |
// $global-variable: global valu; | |
// .content { | |
// $local-variable: local value; | |
// global: $global-variable; | |
// local: $local-variable; | |
// } | |
// .sidebar { | |
// global: $global-variable; | |
// // local: $local-variable; | |
// } | |
/* Shadowing */ | |
// $variable: global value; | |
// .content { | |
// $variable: local value; | |
// value: $variable; | |
// } | |
// .sidebar { | |
// value: $variable; | |
// } |
This file contains 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
/* --- Variables --- */ | |
/* Sass variables are not CSS variables */ | |
/* Default values */ | |
/* Scope */ | |
/* Shadowing */ |
This file contains 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.11", | |
"extensions": {}, | |
"syntax": "SCSS", | |
"outputStyle": "expanded" | |
}, | |
"autoprefixer": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment