| 1234567891011121314151617181920212223242526 |
- @import "constants.styl"
- /* ==== Any phone ==== */
- @media only screen and (max-width: 767px)
- body
- &[data-position="absolute"] > section
- position: absolute
- &[data-position="fixed"] > section
- position: fixed
- aside
- position: absolute
- section
- &.aside
- &:not(.small)
- transform translateX(ASIDE_WIDTH)
- &.small
- transform translateX(ASIDE_WIDTH_SMALL)
- &.right
- transform translateX(-(ASIDE_WIDTH))
- &.small
- transform translateX(-(ASIDE_WIDTH_SMALL))
|