Section 1

Preview this deck

sass

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (6)

Section 1

(6 cards)

sass

Front

one of the benefits is to be able to create variables to make global changes easy $primary: variableValue make css more modular and scalable you can cut pieces of the code and piece them by importing @import footer _footer.js

Back

mixin

Front

@mixin mobile { @media (min-width: #{$narrow-width}) and (max-width: #{$mobile-width}){ @content; } }

Back

mixing

Front

@include narrow{ width:100px; font-size: 14px; }

Back

mixins

Front

used when need to store multiple variables. at@css @mixin in @scass use equal sign =border-radius($radius){ -webkit-border-radius: radius -ms-border-radius: radius border-radius: radius } body +border-radius(10px)

Back

scss %

Front

create a dual selector @extend %message

Back

responsiveUI

Front

Back