AbhilashMadi / Responsive-Design

Responsive Design and clearn SCSS & SASS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Responsive Design with SCSS & SASS


  • Variables
  • Nesting
  • Misins
  • Partials
  • Functions
  • Operators
  • Extending
  • Importing
  • scss map

Common Responsive design Breakpoints

noDeviceWidth
1️⃣Mobile360 x 640
2️⃣Mobiel375 x 667
3️⃣Mobile360 x 720
4️⃣iPhone X375 x 812
5️⃣Pixel 2441 x 731
6️⃣Tablet768 x 1024
7️⃣Laptop1366 x 768
8️⃣High-res
Latptop or desktop
1920 x 1080

Bootstrap uses following Breakpoints

@media (max-width: 575.98px){
    /*styles for the small screens goes here*/
}

@media (min-width: 576px) and (max-width: 767.98px){
    /*styles for medium screens go here*/
}

@media (min-width: 768px) and (max-width: 991.98px){
    /*styles for extra-large screens go here*/
}

@media (min-width: 992px) and (max-width: 1199.98px){
    /*styles for extra-large screens go here*/
}

@media (min-width: 1200px){
    /*styles for extra-extra-large screnns go here*/
}

About

Responsive Design and clearn SCSS & SASS


Languages

Language:SCSS 56.7%Language:HTML 43.3%