mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-02-13 00:00:19 +01:00
- Updated frameworks for better browser support - Improved responsive design - Versioned documentation - Better social media support via the Jekyll SEO plugin - New looks, fwiw - Start page has some more relevant info - Documentation sorted to be more easily accessible - Internally upgraded from plain CSS to SASS
21 lines
498 B
SCSS
21 lines
498 B
SCSS
// stylelint-disable declaration-no-important
|
|
|
|
// Width and height
|
|
|
|
@each $prop, $abbrev in (width: w, height: h) {
|
|
@each $size, $length in $sizes {
|
|
.#{$abbrev}-#{$size} { #{$prop}: $length !important; }
|
|
}
|
|
}
|
|
|
|
.mw-100 { max-width: 100% !important; }
|
|
.mh-100 { max-height: 100% !important; }
|
|
|
|
// Viewport additional helpers
|
|
|
|
.min-vw-100 { min-width: 100vw !important; }
|
|
.min-vh-100 { min-height: 100vh !important; }
|
|
|
|
.vw-100 { width: 100vw !important; }
|
|
.vh-100 { height: 100vh !important; }
|