geekspace 3.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +15 -0
- data/_includes/comments.html +28 -0
- data/_includes/foot.html +11 -0
- data/_includes/footer.html +5 -0
- data/_includes/head.html +99 -0
- data/_includes/header.html +3 -0
- data/_includes/intro.html +6 -0
- data/_includes/nav.html +17 -0
- data/_includes/pagination.html +23 -0
- data/_includes/post-share.html +8 -0
- data/_layouts/compress.html +11 -0
- data/_layouts/default.html +12 -0
- data/_layouts/home.html +47 -0
- data/_layouts/page.html +12 -0
- data/_layouts/post.html +16 -0
- data/_sass/_layout.scss +364 -0
- data/_sass/_syntax-highlighting.scss +96 -0
- data/_sass/_variables.scss +47 -0
- data/_sass/base/_base.scss +11 -0
- data/_sass/base/_buttons.scss +37 -0
- data/_sass/base/_forms.scss +90 -0
- data/_sass/base/_lists.scss +31 -0
- data/_sass/base/_reset.scss +54 -0
- data/_sass/base/_tables.scss +25 -0
- data/_sass/base/_typography.scss +139 -0
- data/_sass/bourbon/_bourbon.scss +54 -0
- data/_sass/bourbon/bourbon/helpers/_buttons-list.scss +14 -0
- data/_sass/bourbon/bourbon/helpers/_scales.scss +27 -0
- data/_sass/bourbon/bourbon/helpers/_text-inputs-list.scss +26 -0
- data/_sass/bourbon/bourbon/library/_border-color.scss +26 -0
- data/_sass/bourbon/bourbon/library/_border-radius.scss +85 -0
- data/_sass/bourbon/bourbon/library/_border-style.scss +25 -0
- data/_sass/bourbon/bourbon/library/_border-width.scss +25 -0
- data/_sass/bourbon/bourbon/library/_buttons.scss +84 -0
- data/_sass/bourbon/bourbon/library/_clearfix.scss +25 -0
- data/_sass/bourbon/bourbon/library/_contrast-switch.scss +81 -0
- data/_sass/bourbon/bourbon/library/_ellipsis.scss +36 -0
- data/_sass/bourbon/bourbon/library/_font-face.scss +65 -0
- data/_sass/bourbon/bourbon/library/_font-stacks.scss +248 -0
- data/_sass/bourbon/bourbon/library/_hide-text.scss +24 -0
- data/_sass/bourbon/bourbon/library/_hide-visually.scss +70 -0
- data/_sass/bourbon/bourbon/library/_margin.scss +37 -0
- data/_sass/bourbon/bourbon/library/_modular-scale.scss +120 -0
- data/_sass/bourbon/bourbon/library/_overflow-wrap.scss +25 -0
- data/_sass/bourbon/bourbon/library/_padding.scss +36 -0
- data/_sass/bourbon/bourbon/library/_position.scss +62 -0
- data/_sass/bourbon/bourbon/library/_prefixer.scss +37 -0
- data/_sass/bourbon/bourbon/library/_shade.scss +32 -0
- data/_sass/bourbon/bourbon/library/_size.scss +50 -0
- data/_sass/bourbon/bourbon/library/_strip-unit.scss +17 -0
- data/_sass/bourbon/bourbon/library/_text-inputs.scss +163 -0
- data/_sass/bourbon/bourbon/library/_timing-functions.scss +36 -0
- data/_sass/bourbon/bourbon/library/_tint.scss +32 -0
- data/_sass/bourbon/bourbon/library/_triangle.scss +82 -0
- data/_sass/bourbon/bourbon/library/_value-prefixer.scss +37 -0
- data/_sass/bourbon/bourbon/settings/_settings.scss +75 -0
- data/_sass/bourbon/bourbon/utilities/_assign-inputs.scss +28 -0
- data/_sass/bourbon/bourbon/utilities/_compact-shorthand.scss +42 -0
- data/_sass/bourbon/bourbon/utilities/_contrast-ratio.scss +31 -0
- data/_sass/bourbon/bourbon/utilities/_directional-property.scss +68 -0
- data/_sass/bourbon/bourbon/utilities/_fetch-bourbon-setting.scss +16 -0
- data/_sass/bourbon/bourbon/utilities/_font-source-declaration.scss +52 -0
- data/_sass/bourbon/bourbon/utilities/_gamma.scss +24 -0
- data/_sass/bourbon/bourbon/utilities/_lightness.scss +24 -0
- data/_sass/bourbon/bourbon/utilities/_unpack-shorthand.scss +29 -0
- data/_sass/bourbon/bourbon/validators/_contains-falsy.scss +20 -0
- data/_sass/bourbon/bourbon/validators/_contains.scss +26 -0
- data/_sass/bourbon/bourbon/validators/_is-color.scss +13 -0
- data/_sass/bourbon/bourbon/validators/_is-length.scss +20 -0
- data/_sass/bourbon/bourbon/validators/_is-number.scss +15 -0
- data/_sass/bourbon/bourbon/validators/_is-size.scss +18 -0
- data/_sass/geekspace.scss +8 -0
- data/assets/css/main.scss +5 -0
- data/assets/icons/FontAwesome/FontAwesome.otf +0 -0
- data/assets/icons/FontAwesome/fontawesome-webfont.eot +0 -0
- data/assets/icons/FontAwesome/fontawesome-webfont.svg +685 -0
- data/assets/icons/FontAwesome/fontawesome-webfont.ttf +0 -0
- data/assets/icons/FontAwesome/fontawesome-webfont.woff +0 -0
- data/assets/icons/FontAwesome/fontawesome-webfont.woff2 +0 -0
- data/assets/images/author.jpg +0 -0
- data/assets/images/cover.jpg +0 -0
- data/assets/images/logo.jpg +0 -0
- metadata +233 -0
@@ -0,0 +1,36 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/// Truncates text and adds an ellipsis to represent overflow.
|
4
|
+
///
|
5
|
+
/// @argument {number} $width [100%]
|
6
|
+
/// The `max-width` for the string to respect before being truncated.
|
7
|
+
///
|
8
|
+
/// @argument {string} $display [inline-block]
|
9
|
+
/// Sets the display-value of the element.
|
10
|
+
///
|
11
|
+
/// @example scss
|
12
|
+
/// .element {
|
13
|
+
/// @include ellipsis;
|
14
|
+
/// }
|
15
|
+
///
|
16
|
+
/// // CSS Output
|
17
|
+
/// .element {
|
18
|
+
/// display: inline-block;
|
19
|
+
/// max-width: 100%;
|
20
|
+
/// overflow: hidden;
|
21
|
+
/// text-overflow: ellipsis;
|
22
|
+
/// white-space: nowrap;
|
23
|
+
/// word-wrap: normal;
|
24
|
+
/// }
|
25
|
+
|
26
|
+
@mixin ellipsis(
|
27
|
+
$width: 100%,
|
28
|
+
$display: inline-block
|
29
|
+
) {
|
30
|
+
display: $display;
|
31
|
+
max-width: $width;
|
32
|
+
overflow: hidden;
|
33
|
+
text-overflow: ellipsis;
|
34
|
+
white-space: nowrap;
|
35
|
+
word-wrap: normal;
|
36
|
+
}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/// Generates an `@font-face` declaration. You can choose the specific file
|
4
|
+
/// formats you need to output; the mixin supports `woff2`
|
5
|
+
/// and `woff`. The mixin also supports usage with the Rails Asset Pipeline,
|
6
|
+
/// which you can enable per use, or globally in the `$bourbon()` settings.
|
7
|
+
///
|
8
|
+
/// @argument {string} $font-family
|
9
|
+
///
|
10
|
+
/// @argument {string} $file-path
|
11
|
+
///
|
12
|
+
/// @argument {string | list} $file-formats [("woff2", "woff")]
|
13
|
+
/// List of the font file formats to include. Can also be set globally using
|
14
|
+
/// the `global-font-file-formats` key in the Bourbon settings.
|
15
|
+
///
|
16
|
+
/// @argument {boolean} $asset-pipeline [false]
|
17
|
+
/// Set to `true` if you’re using the Rails Asset Pipeline (place the fonts
|
18
|
+
/// in `app/assets/fonts/`). Can also be set globally using the
|
19
|
+
/// `rails-asset-pipeline` key in the Bourbon settings.
|
20
|
+
///
|
21
|
+
/// @content
|
22
|
+
/// Any additional CSS properties that are included in the `@include`
|
23
|
+
/// directive will be output within the `@font-face` declaration, e.g. you can
|
24
|
+
/// pass in `font-weight`, `font-style` and/or `unicode-range`.
|
25
|
+
///
|
26
|
+
/// @example scss
|
27
|
+
/// @include font-face(
|
28
|
+
/// "source-sans-pro",
|
29
|
+
/// "fonts/source-sans-pro-regular",
|
30
|
+
/// ("woff2", "woff")
|
31
|
+
/// ) {
|
32
|
+
/// font-style: normal;
|
33
|
+
/// font-weight: 400;
|
34
|
+
/// }
|
35
|
+
///
|
36
|
+
/// // CSS Output
|
37
|
+
/// @font-face {
|
38
|
+
/// font-family: "source-sans-pro";
|
39
|
+
/// src: url("fonts/source-sans-pro-regular.woff2") format("woff2"),
|
40
|
+
/// url("fonts/source-sans-pro-regular.woff") format("woff");
|
41
|
+
/// font-style: normal;
|
42
|
+
/// font-weight: 400;
|
43
|
+
/// }
|
44
|
+
///
|
45
|
+
/// @require {function} _font-source-declaration
|
46
|
+
///
|
47
|
+
/// @require {function} _fetch-bourbon-setting
|
48
|
+
|
49
|
+
@mixin font-face(
|
50
|
+
$font-family,
|
51
|
+
$file-path,
|
52
|
+
$file-formats: _fetch-bourbon-setting("global-font-file-formats"),
|
53
|
+
$asset-pipeline: _fetch-bourbon-setting("rails-asset-pipeline")
|
54
|
+
) {
|
55
|
+
@font-face {
|
56
|
+
font-family: $font-family;
|
57
|
+
src: _font-source-declaration(
|
58
|
+
$font-family,
|
59
|
+
$file-path,
|
60
|
+
$asset-pipeline,
|
61
|
+
$file-formats
|
62
|
+
);
|
63
|
+
@content;
|
64
|
+
}
|
65
|
+
}
|
@@ -0,0 +1,248 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/// A variable that outputs a Helvetica font stack.
|
4
|
+
///
|
5
|
+
/// @link https://goo.gl/uSJvZe
|
6
|
+
///
|
7
|
+
/// @type list
|
8
|
+
///
|
9
|
+
/// @example scss
|
10
|
+
/// .element {
|
11
|
+
/// font-family: $font-stack-helvetica;
|
12
|
+
/// }
|
13
|
+
///
|
14
|
+
/// // CSS Output
|
15
|
+
/// .element {
|
16
|
+
/// font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
17
|
+
/// }
|
18
|
+
|
19
|
+
$font-stack-helvetica: (
|
20
|
+
"Helvetica Neue",
|
21
|
+
"Helvetica",
|
22
|
+
"Arial",
|
23
|
+
sans-serif,
|
24
|
+
);
|
25
|
+
|
26
|
+
/// A variable that outputs a Lucida Grande font stack.
|
27
|
+
///
|
28
|
+
/// @link https://goo.gl/R5UyYE
|
29
|
+
///
|
30
|
+
/// @type list
|
31
|
+
///
|
32
|
+
/// @example scss
|
33
|
+
/// .element {
|
34
|
+
/// font-family: $font-stack-lucida-grande;
|
35
|
+
/// }
|
36
|
+
///
|
37
|
+
/// // CSS Output
|
38
|
+
/// .element {
|
39
|
+
/// font-family: "Lucida Grande", "Lucida Sans Unicode", "Geneva", "Verdana", sans-serif;
|
40
|
+
/// }
|
41
|
+
|
42
|
+
$font-stack-lucida-grande: (
|
43
|
+
"Lucida Grande",
|
44
|
+
"Lucida Sans Unicode",
|
45
|
+
"Geneva",
|
46
|
+
"Verdana",
|
47
|
+
sans-serif,
|
48
|
+
);
|
49
|
+
|
50
|
+
/// A variable that outputs a Verdana font stack.
|
51
|
+
///
|
52
|
+
/// @link https://goo.gl/yGXWSS
|
53
|
+
///
|
54
|
+
/// @type list
|
55
|
+
///
|
56
|
+
/// @example scss
|
57
|
+
/// .element {
|
58
|
+
/// font-family: $font-stack-verdana;
|
59
|
+
/// }
|
60
|
+
///
|
61
|
+
/// // CSS Output
|
62
|
+
/// .element {
|
63
|
+
/// font-family: "Verdana", "Geneva", sans-serif;
|
64
|
+
/// }
|
65
|
+
|
66
|
+
$font-stack-verdana: (
|
67
|
+
"Verdana",
|
68
|
+
"Geneva",
|
69
|
+
sans-serif,
|
70
|
+
);
|
71
|
+
|
72
|
+
/// A variable that outputs a system font stack.
|
73
|
+
///
|
74
|
+
/// @type list
|
75
|
+
///
|
76
|
+
/// @example scss
|
77
|
+
/// .element {
|
78
|
+
/// font-family: $font-stack-system;
|
79
|
+
/// }
|
80
|
+
///
|
81
|
+
/// // CSS Output
|
82
|
+
/// .element {
|
83
|
+
/// font-family: system-ui, -apple-system, BlinkMacSystemFont, "Avenir Next", "Avenir", "Segoe UI", "Lucida Grande", "Helvetica Neue", "Helvetica", "Fira Sans", "Roboto", "Noto", "Droid Sans", "Cantarell", "Oxygen", "Ubuntu", "Franklin Gothic Medium", "Century Gothic", "Liberation Sans", sans-serif;
|
84
|
+
/// }
|
85
|
+
|
86
|
+
$font-stack-system: (
|
87
|
+
system-ui,
|
88
|
+
-apple-system,
|
89
|
+
BlinkMacSystemFont,
|
90
|
+
"Avenir Next",
|
91
|
+
"Avenir",
|
92
|
+
"Segoe UI",
|
93
|
+
"Lucida Grande",
|
94
|
+
"Helvetica Neue",
|
95
|
+
"Helvetica",
|
96
|
+
"Fira Sans",
|
97
|
+
"Roboto",
|
98
|
+
"Noto",
|
99
|
+
"Droid Sans",
|
100
|
+
"Cantarell",
|
101
|
+
"Oxygen",
|
102
|
+
"Ubuntu",
|
103
|
+
"Franklin Gothic Medium",
|
104
|
+
"Century Gothic",
|
105
|
+
"Liberation Sans",
|
106
|
+
sans-serif,
|
107
|
+
);
|
108
|
+
|
109
|
+
/// A variable that outputs a Garamond font stack.
|
110
|
+
///
|
111
|
+
/// @link https://goo.gl/QQFEkV
|
112
|
+
///
|
113
|
+
/// @type list
|
114
|
+
///
|
115
|
+
/// @example scss
|
116
|
+
/// .element {
|
117
|
+
/// font-family: $font-stack-garamond;
|
118
|
+
/// }
|
119
|
+
///
|
120
|
+
/// // CSS Output
|
121
|
+
/// .element {
|
122
|
+
/// font-family: "Garamond", "Baskerville", "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
|
123
|
+
/// }
|
124
|
+
|
125
|
+
$font-stack-garamond: (
|
126
|
+
"Garamond",
|
127
|
+
"Baskerville",
|
128
|
+
"Baskerville Old Face",
|
129
|
+
"Hoefler Text",
|
130
|
+
"Times New Roman",
|
131
|
+
serif,
|
132
|
+
);
|
133
|
+
|
134
|
+
/// A variable that outputs a Georgia font stack.
|
135
|
+
///
|
136
|
+
/// @link https://goo.gl/wtzVPy
|
137
|
+
///
|
138
|
+
/// @type list
|
139
|
+
///
|
140
|
+
/// @example scss
|
141
|
+
/// .element {
|
142
|
+
/// font-family: $font-stack-georgia;
|
143
|
+
/// }
|
144
|
+
///
|
145
|
+
/// // CSS Output
|
146
|
+
/// .element {
|
147
|
+
/// font-family: "Georgia", "Times", "Times New Roman", serif;
|
148
|
+
/// }
|
149
|
+
|
150
|
+
$font-stack-georgia: (
|
151
|
+
"Georgia",
|
152
|
+
"Times",
|
153
|
+
"Times New Roman",
|
154
|
+
serif,
|
155
|
+
);
|
156
|
+
|
157
|
+
/// A variable that outputs a Hoefler Text font stack.
|
158
|
+
///
|
159
|
+
/// @link https://goo.gl/n7U7zx
|
160
|
+
///
|
161
|
+
/// @type list
|
162
|
+
///
|
163
|
+
/// @example scss
|
164
|
+
/// .element {
|
165
|
+
/// font-family: $font-stack-hoefler-text;
|
166
|
+
/// }
|
167
|
+
///
|
168
|
+
/// // CSS Output
|
169
|
+
/// .element {
|
170
|
+
/// font-family: "Hoefler Text", "Baskerville Old Face", "Garamond", "Times New Roman", serif;
|
171
|
+
/// }
|
172
|
+
|
173
|
+
$font-stack-hoefler-text: (
|
174
|
+
"Hoefler Text",
|
175
|
+
"Baskerville Old Face",
|
176
|
+
"Garamond",
|
177
|
+
"Times New Roman",
|
178
|
+
serif,
|
179
|
+
);
|
180
|
+
|
181
|
+
/// A variable that outputs a Consolas font stack.
|
182
|
+
///
|
183
|
+
/// @link https://goo.gl/iKrtqv
|
184
|
+
///
|
185
|
+
/// @type list
|
186
|
+
///
|
187
|
+
/// @example scss
|
188
|
+
/// .element {
|
189
|
+
/// font-family: $font-stack-consolas;
|
190
|
+
/// }
|
191
|
+
///
|
192
|
+
/// // CSS Output
|
193
|
+
/// .element {
|
194
|
+
/// font-family: "Consolas", "monaco", monospace;
|
195
|
+
/// }
|
196
|
+
|
197
|
+
$font-stack-consolas: (
|
198
|
+
"Consolas",
|
199
|
+
"monaco",
|
200
|
+
monospace,
|
201
|
+
);
|
202
|
+
|
203
|
+
/// A variable that outputs a Courier New font stack.
|
204
|
+
///
|
205
|
+
/// @link https://goo.gl/bHfWMP
|
206
|
+
///
|
207
|
+
/// @type list
|
208
|
+
///
|
209
|
+
/// @example scss
|
210
|
+
/// .element {
|
211
|
+
/// font-family: $font-stack-courier-new;
|
212
|
+
/// }
|
213
|
+
///
|
214
|
+
/// // CSS Output
|
215
|
+
/// .element {
|
216
|
+
/// font-family: "Courier New", "Courier", "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
|
217
|
+
/// }
|
218
|
+
|
219
|
+
$font-stack-courier-new: (
|
220
|
+
"Courier New",
|
221
|
+
"Courier",
|
222
|
+
"Lucida Sans Typewriter",
|
223
|
+
"Lucida Typewriter",
|
224
|
+
monospace,
|
225
|
+
);
|
226
|
+
|
227
|
+
/// A variable that outputs a Monaco font stack.
|
228
|
+
///
|
229
|
+
/// @link https://goo.gl/9PgKDO
|
230
|
+
///
|
231
|
+
/// @type list
|
232
|
+
///
|
233
|
+
/// @example scss
|
234
|
+
/// .element {
|
235
|
+
/// font-family: $font-stack-monaco;
|
236
|
+
/// }
|
237
|
+
///
|
238
|
+
/// // CSS Output
|
239
|
+
/// .element {
|
240
|
+
/// font-family: "Monaco", "Consolas", "Lucida Console", monospace;
|
241
|
+
/// }
|
242
|
+
|
243
|
+
$font-stack-monaco: (
|
244
|
+
"Monaco",
|
245
|
+
"Consolas",
|
246
|
+
"Lucida Console",
|
247
|
+
monospace,
|
248
|
+
);
|
@@ -0,0 +1,24 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/// Hides the text in an element, commonly used to show an image instead. Some
|
4
|
+
/// elements will need block-level styles applied.
|
5
|
+
///
|
6
|
+
/// @link https://goo.gl/EvLRIu
|
7
|
+
///
|
8
|
+
/// @example scss
|
9
|
+
/// .element {
|
10
|
+
/// @include hide-text;
|
11
|
+
/// }
|
12
|
+
///
|
13
|
+
/// // CSS Output
|
14
|
+
/// .element {
|
15
|
+
/// overflow: hidden;
|
16
|
+
/// text-indent: 101%;
|
17
|
+
/// white-space: nowrap;
|
18
|
+
/// }
|
19
|
+
|
20
|
+
@mixin hide-text {
|
21
|
+
overflow: hidden;
|
22
|
+
text-indent: 101%;
|
23
|
+
white-space: nowrap;
|
24
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/// Hides an element visually while still allowing the content to be accessible
|
4
|
+
/// to assistive technology, e.g. screen readers. Passing `unhide` will reverse
|
5
|
+
/// the affects of the hiding, which is handy for showing the element on focus,
|
6
|
+
/// for example.
|
7
|
+
///
|
8
|
+
/// @link https://goo.gl/Vf1TGn
|
9
|
+
///
|
10
|
+
/// @argument {string} $toggle [hide]
|
11
|
+
/// Accepts `hide` or `unhide`. `unhide` reverses the affects of `hide`.
|
12
|
+
///
|
13
|
+
/// @example scss
|
14
|
+
/// .element {
|
15
|
+
/// @include hide-visually;
|
16
|
+
///
|
17
|
+
/// &:active,
|
18
|
+
/// &:focus {
|
19
|
+
/// @include hide-visually("unhide");
|
20
|
+
/// }
|
21
|
+
/// }
|
22
|
+
///
|
23
|
+
/// // CSS Output
|
24
|
+
/// .element {
|
25
|
+
/// border: 0;
|
26
|
+
/// clip: rect(1px, 1px, 1px, 1px);
|
27
|
+
/// clip-path: inset(100%);
|
28
|
+
/// height: 1px;
|
29
|
+
/// overflow: hidden;
|
30
|
+
/// padding: 0;
|
31
|
+
/// position: absolute;
|
32
|
+
/// width: 1px;
|
33
|
+
/// }
|
34
|
+
///
|
35
|
+
/// .hide-visually:active,
|
36
|
+
/// .hide-visually:focus {
|
37
|
+
/// clip: auto;
|
38
|
+
/// clip-path: none;
|
39
|
+
/// height: auto;
|
40
|
+
/// overflow: visible;
|
41
|
+
/// position: static;
|
42
|
+
/// width: auto;
|
43
|
+
/// }
|
44
|
+
///
|
45
|
+
/// @since 5.0.0
|
46
|
+
|
47
|
+
@mixin hide-visually($toggle: "hide") {
|
48
|
+
@if not index("hide" "unhide", $toggle) {
|
49
|
+
@error "`#{$toggle}` is not a valid value for the `$toggle` argument in " +
|
50
|
+
"the `hide-visually` mixin. Must be either `hide` or `unhide`.";
|
51
|
+
} @else if $toggle == "hide" {
|
52
|
+
border: 0;
|
53
|
+
clip: rect(1px, 1px, 1px, 1px);
|
54
|
+
clip-path: inset(100%);
|
55
|
+
height: 1px;
|
56
|
+
overflow: hidden;
|
57
|
+
padding: 0;
|
58
|
+
position: absolute;
|
59
|
+
white-space: nowrap;
|
60
|
+
width: 1px;
|
61
|
+
} @else if $toggle == "unhide" {
|
62
|
+
clip: auto;
|
63
|
+
clip-path: none;
|
64
|
+
height: auto;
|
65
|
+
overflow: visible;
|
66
|
+
position: static;
|
67
|
+
white-space: inherit;
|
68
|
+
width: auto;
|
69
|
+
}
|
70
|
+
}
|
@@ -0,0 +1,37 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/// Provides a concise, one-line method for setting `margin` on specific edges
|
4
|
+
/// of a box. Use a `null` value to “skip” edges of the box with standard
|
5
|
+
/// CSS shorthand.
|
6
|
+
///
|
7
|
+
/// @argument {list} $values
|
8
|
+
/// List of margin values; accepts CSS shorthand.
|
9
|
+
///
|
10
|
+
/// @example scss
|
11
|
+
/// .element {
|
12
|
+
/// @include margin(null auto);
|
13
|
+
/// }
|
14
|
+
///
|
15
|
+
/// // CSS Output
|
16
|
+
/// .element {
|
17
|
+
/// margin-left: auto;
|
18
|
+
/// margin-right: auto;
|
19
|
+
/// }
|
20
|
+
///
|
21
|
+
/// @example scss
|
22
|
+
/// .element {
|
23
|
+
/// @include margin(10px 3em 20vh null);
|
24
|
+
/// }
|
25
|
+
///
|
26
|
+
/// // CSS Output
|
27
|
+
/// .element {
|
28
|
+
/// margin-bottom: 20vh;
|
29
|
+
/// margin-right: 3em;
|
30
|
+
/// margin-top: 10px;
|
31
|
+
/// }
|
32
|
+
///
|
33
|
+
/// @require {mixin} _directional-property
|
34
|
+
|
35
|
+
@mixin margin($values) {
|
36
|
+
@include _directional-property(margin, null, $values);
|
37
|
+
}
|