splitted up stylesheet and added lots of scaffolding to it. Style needs working.
[theme-danix.xyz.git] / assets / sass / layout / _wrapper.scss
1 ///
2 /// Forty by HTML5 UP
3 /// html5up.net | @ajlkn
4 /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 ///
6
7 /* Wrapper */
8
9 #wrapper {
10 @include vendor('transition', (
11 'filter #{_duration(menu)} ease',
12 '-webkit-filter #{_duration(menu)} ease',
13 'opacity 0.375s ease-out'
14 ));
15 padding-top: 3.25em;
16
17 &.is-transitioning {
18 opacity: 0;
19 }
20
21 > * {
22 @include inner;
23 }
24
25 @include breakpoint('<=small') {
26 padding-top: 2.75em;
27 }
28 }