Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
// Install SASS: npm install -g sass // Compile: sass input.scss output.css // SCSS Variables $primary-color: #3498db; $font-size-base: 16px; $border-radius: 4px; // Usage .button { background: $primary-color; font-size: $font-size-base; border-radius: $border-radius; padding: 8px 16px; color: white; &:hover { background: darken($primary-color, 10%); } }
Result
Open