Created
August 31, 2021 10:49
-
-
Save adarsh0d/2efcef883b345b5446f01651e5b95e96 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
//Modules | |
@use "sass:map"; | |
//variables | |
$font-stack: Helvetica, sans-serif; | |
$primary-color: #333; | |
body { | |
font: 100% $font-stack; | |
color: $primary-color; | |
} | |
//nesting | |
#content{ | |
font-size: 12px; | |
&, a{ | |
color: #333; | |
} | |
} | |
.enlarge { | |
font-size: 14px; | |
transition: { | |
property: font-size; | |
duration: 4s; | |
delay: 0.5s; | |
} | |
&:hover { font-size: 36px; } | |
} | |
//Hidden properties | |
$rounded-corners: false; | |
.button { | |
border: 1px solid black; | |
border-radius: if($rounded-corners, 5px, null); | |
} | |
//Default | |
$page-color: #333; | |
$page-color: #666 !default; | |
$section-color: #999 !default; | |
body { | |
color: $page-color; | |
} | |
.section { | |
color: $section-color; | |
} | |
//Mixing | |
@mixin theme($theme: DarkGray) { | |
background: $theme; | |
box-shadow: 0 0 1px rgba($theme, .25); | |
color: #fff; | |
} | |
.info { | |
@include theme; | |
} | |
.alert { | |
@include theme($theme: DarkRed); | |
} | |
.success { | |
@include theme($theme: DarkGreen); | |
} | |
//extends | |
.serious-error{ | |
@extend .alert; | |
font-weight: bold; | |
} | |
//Mathematics | |
.container { | |
width: 100%; | |
} | |
article[role="main"] { | |
float: left; | |
width: 600px / 960px * 100%; | |
} | |
aside[role="complementary"] { | |
float: right; | |
width: 300px / 960px * 100%; | |
} | |
//Interpolation | |
$class-name: wrapper; | |
$attribute-name: font; | |
div.#{$class-name}{ | |
#{$attribute-name}-size: 12px; | |
} | |
//Control Directives | |
$type: small; | |
p { | |
@if $type == large { | |
font-size: 24px; | |
} @else if $type == medium{ | |
font-size: 18px; | |
} @else { | |
font-size: 16px; | |
} | |
} | |
//Looping | |
//@for | |
@for $i from 1 through 3 { | |
.for-#{$i} { | |
width: 10px * $i; | |
} | |
} | |
//@each | |
@each $item in item1, item2{ | |
.#{$item}{ | |
width: 500px; | |
} | |
} | |
//@while | |
$i: 6; | |
@while $i > 0 { | |
.while-#{$i} { | |
width: 10px * $i; | |
} | |
$i: $i - 2; | |
} | |
//Maps | |
$theme-colors: ( | |
"primary": #28a745, | |
"information": #17a2b8, | |
"warning": #ffc107, | |
); | |
.color-pallet { | |
// Instead of $theme-color-#{warning} | |
background-color: map.get($theme-colors, "warning"); | |
} | |
@each $key, $value in $theme-colors { | |
.#{$key} { | |
background-color: $value; | |
} | |
} | |
//functions | |
@function pow($base, $exponent) { | |
$result: 1; | |
@for $_ from 1 through $exponent { | |
$result: $result * $base; | |
} | |
@return $result; | |
} | |
.sidebar { | |
float: left; | |
margin-left: pow(4, 3) * 1px; | |
} |
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
<body> | |
<div class="info">This is info</div> | |
<div class="alert">This is alert</div> | |
<div class="success">This is success</div> | |
<div class="serious-error">This is success</div> | |
<div class="container"> | |
<article role="main"> | |
This is main article | |
</article> | |
<aside role="complimentary"> | |
This is complimentary | |
</aside> | |
</div> | |
<div id="content"> | |
<div class="enlarge"> | |
Zoom this | |
</div> | |
<button class="button"> | |
Rounded Button | |
</button> | |
</div> | |
</body> |
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
body { | |
font: 100% Helvetica, sans-serif; | |
color: #333; | |
} | |
#content { | |
font-size: 12px; | |
} | |
#content, #content a { | |
color: #333; | |
} | |
.enlarge { | |
font-size: 14px; | |
transition-property: font-size; | |
transition-duration: 4s; | |
transition-delay: 0.5s; | |
} | |
.enlarge:hover { | |
font-size: 36px; | |
} | |
.button { | |
border: 1px solid black; | |
} | |
body { | |
color: #333; | |
} | |
.section { | |
color: #999; | |
} | |
.info { | |
background: DarkGray; | |
box-shadow: 0 0 1px rgba(169, 169, 169, 0.25); | |
color: #fff; | |
} | |
.alert, .serious-error { | |
background: DarkRed; | |
box-shadow: 0 0 1px rgba(139, 0, 0, 0.25); | |
color: #fff; | |
} | |
.success { | |
background: DarkGreen; | |
box-shadow: 0 0 1px rgba(0, 100, 0, 0.25); | |
color: #fff; | |
} | |
.serious-error { | |
font-weight: bold; | |
} | |
.container { | |
width: 100%; | |
} | |
article[role=main] { | |
float: left; | |
width: 62.5%; | |
} | |
aside[role=complementary] { | |
float: right; | |
width: 31.25%; | |
} | |
div.wrapper { | |
font-size: 12px; | |
} | |
p { | |
font-size: 16px; | |
} | |
.for-1 { | |
width: 10px; | |
} | |
.for-2 { | |
width: 20px; | |
} | |
.for-3 { | |
width: 30px; | |
} | |
.item1 { | |
width: 500px; | |
} | |
.item2 { | |
width: 500px; | |
} | |
.while-6 { | |
width: 60px; | |
} | |
.while-4 { | |
width: 40px; | |
} | |
.while-2 { | |
width: 20px; | |
} | |
.color-pallet { | |
background-color: #ffc107; | |
} | |
.primary { | |
background-color: #28a745; | |
} | |
.information { | |
background-color: #17a2b8; | |
} | |
.warning { | |
background-color: #ffc107; | |
} | |
.sidebar { | |
float: left; | |
margin-left: 64px; | |
} |
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.32.12", | |
"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