-
Notifications
You must be signed in to change notification settings - Fork 6
/
_objects.box.scss
110 lines (75 loc) · 2.12 KB
/
_objects.box.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*------------------------------------*\
#BOX
\*------------------------------------*/
/**
* The box object simply boxes off content.
*/
// Predefine the variables below in order to alter and enable specific features.
$inuit-box-namespace: $inuit-namespace !default;
$inuit-box-padding: $inuit-base-spacing-unit !default;
$inuit-box-padding--tiny: quarter($inuit-box-padding) !default;
$inuit-box-padding--small: halve($inuit-box-padding) !default;
$inuit-box-padding--large: double($inuit-box-padding) !default;
$inuit-box-padding--huge: quadruple($inuit-box-padding) !default;
$inuit-enable-box--flush: false !default;
$inuit-enable-box--tiny: false !default;
$inuit-enable-box--small: false !default;
$inuit-enable-box--large: false !default;
$inuit-enable-box--huge: false !default;
/**
* 1. So we can apply the `.box` class to naturally-inline elements.
*/
.#{$inuit-box-namespace}box,
%#{$inuit-box-namespace}box {
@extend %clearfix;
display: block; /* [1] */
padding: $inuit-box-padding;
> :last-child {
margin-bottom: 0;
}
}
@if ($inuit-enable-box--flush == true) {
/**
* Flush (i.e. no padding) box.
*/
.#{$inuit-box-namespace}box--flush,
%#{$inuit-box-namespace}box--flush {
padding: 0;
}
}
@if ($inuit-enable-box--tiny == true) {
/**
* Tiny box.
*/
.#{$inuit-box-namespace}box--tiny,
%#{$inuit-box-namespace}box--tiny {
padding: $inuit-box-padding--tiny;
}
}
@if ($inuit-enable-box--small == true) {
/**
* Small box.
*/
.#{$inuit-box-namespace}box--small,
%#{$inuit-box-namespace}box--small {
padding: $inuit-box-padding--small;
}
}
@if ($inuit-enable-box--large == true) {
/**
* Large box.
*/
.#{$inuit-box-namespace}box--large,
%#{$inuit-box-namespace}box--large {
padding: $inuit-box-padding--large;
}
}
@if ($inuit-enable-box--huge == true) {
/**
* Huge box.
*/
.#{$inuit-box-namespace}box--huge,
%#{$inuit-box-namespace}box--huge {
padding: $inuit-box-padding--huge;
}
}