mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 07:58:26 -04:00
- de-personalize the theme as much as possible, moving personal info into config.toml parameters - extract hard-coded content out layouts and into actual /content (especially home page and all of its assets) - include full text of posts in RSS feed (aka making the world a better place) - use abstract layout for both video pages (/leo and /birthday)
17 lines
416 B
SCSS
17 lines
416 B
SCSS
@charset "UTF-8";
|
|
|
|
// Responsive Awesomeness
|
|
@media screen and (max-width: $responsive-width) {
|
|
body {
|
|
// Safari iOS menu bar reappers below 44px:
|
|
// https://www.eventbrite.com/engineering/mobile-safari-why/
|
|
padding-bottom: 45px !important;
|
|
// Allows you to scroll below the viewport; default value is visible
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
@import 'home';
|
|
@import 'notes';
|
|
@import 'videos';
|
|
}
|