Milligram - Mobile First

HTML
CSS
/* Mobile First Media Queries */ /* Base style */ /* Larger than mobile screen */ @media (min-width: 40.0rem) { } /* Larger than tablet screen */ @media (min-width: 80.0rem) { } /* Larger than desktop screen */ @media (min-width: 120.0rem) { }
JAVASCRIPT
/* The Mobile First is the design strategy that takes priority development for mobile devices like smartphones and tablets. It means all styles outside of a media queries apply to all devices, then larger screens are targeted for enhancement. This prevents small devices from having to parse tons of unused CSS. https://github.com/milligram/milligram https://milligram.github.io */
Expand for more options Login