Last active
March 17, 2021 19:56
-
-
Save skhashaev/4e0692af0b20c0f68d73795b47d7baca 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
// This comment won't be included in the CSS. | |
/* But this comment will, except in compressed mode. */ | |
/* It can also contain interpolation: | |
* 1 + 1 = #{1 + 1} */ | |
/*! This comment will be included even in compressed mode. */ | |
p /* Multi-line comments can be written anywhere | |
* whitespace is allowed. */ .sans { | |
font: Helvetica, // So can single-line commments. | |
sans-serif; | |
} | |
// There are also documentation comments | |
/// Computes an exponent. | |
/// | |
/// @param {number} $base | |
/// The number to multiply by itself. | |
/// @param {integer (unitless)} $exponent | |
/// The number of `$base`s to multiply together. | |
/// @return {number} `$base` to the power of `$exponent`. | |
@function pow($base, $exponent) { | |
$result: 1; | |
@for $_ from 1 through $exponent { | |
$result: $result * $base; | |
} | |
@return $result; | |
} |
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
/* But this comment will, except in compressed mode. */ | |
/* It can also contain interpolation: | |
* 1 + 1 = 2 */ | |
/*! This comment will be included even in compressed mode. */ | |
p .sans { | |
font: Helvetica, sans-serif; | |
} |
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