This repository has been archived on 2020-04-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-03-29 16:59:16 +00:00
|
|
|
// @import "imports/reset.css";
|
|
|
|
|
2020-03-28 14:07:15 +00:00
|
|
|
@import "imports/mixins.scss";
|
|
|
|
|
2020-03-28 09:51:22 +00:00
|
|
|
@import "imports/blocks.scss";
|
2020-03-22 22:09:09 +00:00
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2017-08-11 14:48:32 +00:00
|
|
|
|
2020-03-28 21:15:49 +00:00
|
|
|
// swup transition classes
|
|
|
|
.transition-fade {
|
|
|
|
transition: 0.3s;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
html.is-animating .transition-fade {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
2020-03-22 22:09:09 +00:00
|
|
|
// vim:set filetype=scss:
|