Initial port
[editorial.git] / assets / main / sass / components / _box.scss
1 ///
2 /// Editorial 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-radius: _size(border-radius);
11 border: solid 1px _palette(border);
12 margin-bottom: _size(element-margin);
13 padding: 1.5em;
14
15 > :last-child,
16 > :last-child > :last-child,
17 > :last-child > :last-child > :last-child {
18 margin-bottom: 0;
19 }
20
21 &.alt {
22 border: 0;
23 border-radius: 0;
24 padding: 0;
25 }
26 }