boot.gl 0.0.2

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.
@@ -0,0 +1,202 @@
1
+ ////
2
+ ///
3
+ /// Reset Mixins Module
4
+ /// ===========================================================================
5
+ ///
6
+ /// @group Reset
7
+ /// @author Scape Agency
8
+ /// @link https://boot.gl
9
+ /// @since 0.1.0 initial release
10
+ /// @todo None
11
+ /// @access public
12
+ ///
13
+ ////
14
+
15
+ // ============================================================================
16
+ // Use
17
+ // ============================================================================
18
+
19
+ // Reset margin and padding for all elements
20
+ @mixin reset_bleed {
21
+ margin: 0;
22
+ margin-block-start: 0;
23
+ margin-block-end: 0;
24
+ margin-inline-start: 0;
25
+ margin-inline-end: 0;
26
+ padding: 0;
27
+ border: 0; // Ensures no borders are applied unless explicitly defined
28
+ font-size: 100%; // Prevent scaling issues by setting default font size
29
+ font: inherit; // Ensures fonts are consistently inherited from parent elements
30
+ vertical-align: baseline; // Aligns elements to the baseline to avoid layout shifts
31
+ }
32
+
33
+ // Apply the reset mixin to all elements
34
+ *,
35
+ a,
36
+ abbr,
37
+ acronym,
38
+ address,
39
+ applet,
40
+ area,
41
+ article,
42
+ aside,
43
+ audio,
44
+ b,
45
+ base,
46
+ basefont,
47
+ bb,
48
+ bdo,
49
+ big,
50
+ blockquote,
51
+ body,
52
+ br,
53
+ button,
54
+ canvas,
55
+ caption,
56
+ center,
57
+ cite,
58
+ code,
59
+ col,
60
+ colgroup,
61
+ command,
62
+ datalist,
63
+ dd,
64
+ del,
65
+ details,
66
+ dfn,
67
+ dialog,
68
+ dir,
69
+ div,
70
+ dl,
71
+ dt,
72
+ em,
73
+ embed,
74
+ eventsource,
75
+ fieldset,
76
+ figcaption,
77
+ figure,
78
+ font,
79
+ footer,
80
+ form,
81
+ frame,
82
+ frameset,
83
+ h1,
84
+ h2,
85
+ h3,
86
+ h4,
87
+ h5,
88
+ h6,
89
+ head,
90
+ header,
91
+ hgroup,
92
+ hr,
93
+ html,
94
+ i,
95
+ iframe,
96
+ img,
97
+ input,
98
+ ins,
99
+ isindex,
100
+ kbd,
101
+ keygen,
102
+ label,
103
+ legend,
104
+ li,
105
+ link,
106
+ map,
107
+ mark,
108
+ menu,
109
+ meta,
110
+ meter,
111
+ nav,
112
+ noframes,
113
+ noscript,
114
+ object,
115
+ ol,
116
+ optgroup,
117
+ option,
118
+ output,
119
+ p,
120
+ param,
121
+ pre,
122
+ progress,
123
+ q,
124
+ rp,
125
+ rt,
126
+ ruby,
127
+ s,
128
+ samp,
129
+ script,
130
+ section,
131
+ select,
132
+ small,
133
+ source,
134
+ span,
135
+ strike,
136
+ strong,
137
+ style,
138
+ sub,
139
+ sup,
140
+ table,
141
+ tbody,
142
+ td,
143
+ textarea,
144
+ tfoot,
145
+ th,
146
+ thead,
147
+ time,
148
+ title,
149
+ tr,
150
+ track,
151
+ tt,
152
+ u,
153
+ ul,
154
+ var,
155
+ video,
156
+ wbr {
157
+ @include reset_bleed;
158
+ }
159
+
160
+ // HTML5 display-role reset for older browsers
161
+ // Ensures HTML5 elements are displayed correctly in older browsers
162
+ article,
163
+ aside,
164
+ details,
165
+ figcaption,
166
+ figure,
167
+ footer,
168
+ header,
169
+ hgroup,
170
+ menu,
171
+ nav,
172
+ section,
173
+ main {
174
+ display: block;
175
+ }
176
+
177
+ // html, body, div, span, applet, object, iframe,
178
+ // h1, h2, h3, h4, h5, h6, p, blockquote, pre,
179
+ // a, abbr, acronym, address, big, cite, code,
180
+ // del, dfn, em, img, ins, kbd, q, s, samp,
181
+ // small, strike, strong, sub, sup, tt, var,
182
+ // b, u, i, center,
183
+ // dl, dt, dd, ol, ul, li,
184
+ // fieldset, form, label, legend,
185
+ // table, caption, tbody, tfoot, thead, tr, th, td,
186
+ // article, aside, canvas, details, embed,
187
+ // figure, figcaption, footer, header, hgroup,
188
+ // menu, nav, output, ruby, section, summary,
189
+ // time, mark, audio, video {
190
+ // margin: 0;
191
+ // padding: 0;
192
+ // border: 0;
193
+ // font-size: 100%;
194
+ // font: inherit;
195
+ // vertical-align: baseline;
196
+ // }
197
+
198
+ // /* HTML5 display-role reset for older browsers */
199
+ // article, aside, details, figcaption, figure,
200
+ // footer, header, hgroup, menu, nav, section, main {
201
+ // display: block;
202
+ // }
@@ -0,0 +1,17 @@
1
+ ////
2
+ ///
3
+ /// boot.gl
4
+ /// ===========================================================================
5
+ ///
6
+ /// @author Scape Agency
7
+ /// @link https://boot.gl
8
+ /// @since 0.1.0 initial release
9
+ /// @todo None
10
+ /// @access public
11
+ ///
12
+ ////
13
+
14
+
15
+ @charset "utf-8";
16
+
17
+ @forward "reset";
@@ -0,0 +1,351 @@
1
+ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
2
+
3
+ /* Document
4
+ ========================================================================== */
5
+
6
+ /**
7
+ * 1. Correct the line height in all browsers.
8
+ * 2. Prevent adjustments of font size after orientation changes in iOS.
9
+ */
10
+
11
+ html {
12
+ line-height: 1.15; /* 1 */
13
+ -webkit-text-size-adjust: 100%; /* 2 */
14
+ }
15
+
16
+ /* Sections
17
+ ========================================================================== */
18
+
19
+ /**
20
+ * Remove the margin in all browsers.
21
+ */
22
+
23
+ body {
24
+ margin: 0;
25
+ }
26
+
27
+ /**
28
+ * Render the `main` element consistently in IE.
29
+ */
30
+
31
+ main {
32
+ display: block;
33
+ }
34
+
35
+ /**
36
+ * Correct the font size and margin on `h1` elements within `section` and
37
+ * `article` contexts in Chrome, Firefox, and Safari.
38
+ */
39
+
40
+ h1 {
41
+ font-size: 2em;
42
+ margin: 0.67em 0;
43
+ }
44
+
45
+ /* Grouping content
46
+ ========================================================================== */
47
+
48
+ /**
49
+ * 1. Add the correct box sizing in Firefox.
50
+ * 2. Show the overflow in Edge and IE.
51
+ */
52
+
53
+ hr {
54
+ box-sizing: content-box; /* 1 */
55
+ height: 0; /* 1 */
56
+ overflow: visible; /* 2 */
57
+ }
58
+
59
+ /**
60
+ * 1. Correct the inheritance and scaling of font size in all browsers.
61
+ * 2. Correct the odd `em` font sizing in all browsers.
62
+ */
63
+
64
+ pre {
65
+ font-family: monospace, monospace; /* 1 */
66
+ font-size: 1em; /* 2 */
67
+ }
68
+
69
+ /* Text-level semantics
70
+ ========================================================================== */
71
+
72
+ /**
73
+ * Remove the gray background on active links in IE 10.
74
+ */
75
+
76
+ a {
77
+ background-color: transparent;
78
+ }
79
+
80
+ /**
81
+ * 1. Remove the bottom border in Chrome 57-
82
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
83
+ */
84
+
85
+ abbr[title] {
86
+ border-bottom: none; /* 1 */
87
+ text-decoration: underline; /* 2 */
88
+ text-decoration: underline dotted; /* 2 */
89
+ }
90
+
91
+ /**
92
+ * Add the correct font weight in Chrome, Edge, and Safari.
93
+ */
94
+
95
+ b,
96
+ strong {
97
+ font-weight: bolder;
98
+ }
99
+
100
+ /**
101
+ * 1. Correct the inheritance and scaling of font size in all browsers.
102
+ * 2. Correct the odd `em` font sizing in all browsers.
103
+ */
104
+
105
+ code,
106
+ kbd,
107
+ samp {
108
+ font-family: monospace, monospace; /* 1 */
109
+ font-size: 1em; /* 2 */
110
+ }
111
+
112
+ /**
113
+ * Add the correct font size in all browsers.
114
+ */
115
+
116
+ small {
117
+ font-size: 80%;
118
+ }
119
+
120
+ /**
121
+ * Prevent `sub` and `sup` elements from affecting the line height in
122
+ * all browsers.
123
+ */
124
+
125
+ sub,
126
+ sup {
127
+ font-size: 75%;
128
+ line-height: 0;
129
+ position: relative;
130
+ vertical-align: baseline;
131
+ }
132
+
133
+ sub {
134
+ bottom: -0.25em;
135
+ }
136
+
137
+ sup {
138
+ top: -0.5em;
139
+ }
140
+
141
+ /* Embedded content
142
+ ========================================================================== */
143
+
144
+ /**
145
+ * Remove the border on images inside links in IE 10.
146
+ */
147
+
148
+ img {
149
+ border-style: none;
150
+ }
151
+
152
+ /* Forms
153
+ ========================================================================== */
154
+
155
+ /**
156
+ * 1. Change the font styles in all browsers.
157
+ * 2. Remove the margin in Firefox and Safari.
158
+ */
159
+
160
+ button,
161
+ input,
162
+ optgroup,
163
+ select,
164
+ textarea {
165
+ font-family: inherit; /* 1 */
166
+ font-size: 100%; /* 1 */
167
+ line-height: 1.15; /* 1 */
168
+ margin: 0; /* 2 */
169
+ }
170
+
171
+ /**
172
+ * Show the overflow in IE.
173
+ * 1. Show the overflow in Edge.
174
+ */
175
+
176
+ button,
177
+ input {
178
+ /* 1 */
179
+ overflow: visible;
180
+ }
181
+
182
+ /**
183
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
184
+ * 1. Remove the inheritance of text transform in Firefox.
185
+ */
186
+
187
+ button,
188
+ select {
189
+ /* 1 */
190
+ text-transform: none;
191
+ }
192
+
193
+ /**
194
+ * Correct the inability to style clickable types in iOS and Safari.
195
+ */
196
+
197
+ button,
198
+ [type="button"],
199
+ [type="reset"],
200
+ [type="submit"] {
201
+ -webkit-appearance: button;
202
+ }
203
+
204
+ /**
205
+ * Remove the inner border and padding in Firefox.
206
+ */
207
+
208
+ button::-moz-focus-inner,
209
+ [type="button"]::-moz-focus-inner,
210
+ [type="reset"]::-moz-focus-inner,
211
+ [type="submit"]::-moz-focus-inner {
212
+ border-style: none;
213
+ padding: 0;
214
+ }
215
+
216
+ /**
217
+ * Restore the focus styles unset by the previous rule.
218
+ */
219
+
220
+ button:-moz-focusring,
221
+ [type="button"]:-moz-focusring,
222
+ [type="reset"]:-moz-focusring,
223
+ [type="submit"]:-moz-focusring {
224
+ outline: 1px dotted ButtonText;
225
+ }
226
+
227
+ /**
228
+ * Correct the padding in Firefox.
229
+ */
230
+
231
+ fieldset {
232
+ padding: 0.35em 0.75em 0.625em;
233
+ }
234
+
235
+ /**
236
+ * 1. Correct the text wrapping in Edge and IE.
237
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
238
+ * 3. Remove the padding so developers are not caught out when they zero out
239
+ * `fieldset` elements in all browsers.
240
+ */
241
+
242
+ legend {
243
+ box-sizing: border-box; /* 1 */
244
+ color: inherit; /* 2 */
245
+ display: table; /* 1 */
246
+ max-width: 100%; /* 1 */
247
+ padding: 0; /* 3 */
248
+ white-space: normal; /* 1 */
249
+ }
250
+
251
+ /**
252
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
253
+ */
254
+
255
+ progress {
256
+ vertical-align: baseline;
257
+ }
258
+
259
+ /**
260
+ * Remove the default vertical scrollbar in IE 10+.
261
+ */
262
+
263
+ textarea {
264
+ overflow: auto;
265
+ }
266
+
267
+ /**
268
+ * 1. Add the correct box sizing in IE 10.
269
+ * 2. Remove the padding in IE 10.
270
+ */
271
+
272
+ [type="checkbox"],
273
+ [type="radio"] {
274
+ box-sizing: border-box; /* 1 */
275
+ padding: 0; /* 2 */
276
+ }
277
+
278
+ /**
279
+ * Correct the cursor style of increment and decrement buttons in Chrome.
280
+ */
281
+
282
+ [type="number"]::-webkit-inner-spin-button,
283
+ [type="number"]::-webkit-outer-spin-button {
284
+ height: auto;
285
+ }
286
+
287
+ /**
288
+ * 1. Correct the odd appearance in Chrome and Safari.
289
+ * 2. Correct the outline style in Safari.
290
+ */
291
+
292
+ [type="search"] {
293
+ -webkit-appearance: textfield; /* 1 */
294
+ outline-offset: -2px; /* 2 */
295
+ }
296
+
297
+ /**
298
+ * Remove the inner padding in Chrome and Safari on macOS.
299
+ */
300
+
301
+ [type="search"]::-webkit-search-decoration {
302
+ -webkit-appearance: none;
303
+ }
304
+
305
+ /**
306
+ * 1. Correct the inability to style clickable types in iOS and Safari.
307
+ * 2. Change font properties to `inherit` in Safari.
308
+ */
309
+
310
+ ::-webkit-file-upload-button {
311
+ -webkit-appearance: button; /* 1 */
312
+ font: inherit; /* 2 */
313
+ }
314
+
315
+ /* Interactive
316
+ ========================================================================== */
317
+
318
+ /*
319
+ * Add the correct display in Edge, IE 10+, and Firefox.
320
+ */
321
+
322
+ details {
323
+ display: block;
324
+ }
325
+
326
+ /*
327
+ * Add the correct display in all browsers.
328
+ */
329
+
330
+ summary {
331
+ display: list-item;
332
+ }
333
+
334
+ /* Misc
335
+ ========================================================================== */
336
+
337
+ /**
338
+ * Add the correct display in IE 10+.
339
+ */
340
+
341
+ template {
342
+ display: none;
343
+ }
344
+
345
+ /**
346
+ * Add the correct display in IE 10.
347
+ */
348
+
349
+ [hidden] {
350
+ display: none;
351
+ }