splitted up stylesheet and added lots of scaffolding to it. Style needs working.
[theme-danix.xyz.git] / assets / sass / components / _box.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 /* Box */
8
9 .box {
10 border: solid 1px _palette(border);
11 margin-bottom: _size(element-margin);
12 padding: 1.5em;
13
14 > :last-child,
15 > :last-child > :last-child,
16 > :last-child > :last-child > :last-child {
17 margin-bottom: 0;
18 }
19
20 &.alt {
21 border: 0;
22 border-radius: 0;
23 padding: 0;
24 }
25 }