aboutsummaryrefslogtreecommitdiff
path: root/src/scss/base/_initialize.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/scss/base/_initialize.scss')
-rw-r--r--src/scss/base/_initialize.scss42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/scss/base/_initialize.scss b/src/scss/base/_initialize.scss
new file mode 100644
index 0000000..6185613
--- /dev/null
+++ b/src/scss/base/_initialize.scss
@@ -0,0 +1,42 @@
1/**
2 * Global box sizing option
3 *
4 * Type: String
5 */
6
7$iota-base-initialize-box-sizing: 'border-box';
8
9
10/**
11 * Makes all heading tags ( h1 - h6 ) to be equal
12 * to your body size. It forces you to use heading
13 * tags with focus on your semantics and not on the
14 * way they look.
15 *
16 * Type: Boolean
17 */
18
19$iota-base-initialize-heading-size: true;
20
21
22/**
23 * Enables normalize and resets for the HTML4 form
24 * elements
25 *
26 * Type: Boolean
27 */
28
29$iota-base-initialize-form-elements: false;
30
31
32/**
33 * Enables normalize and resets for the HTML5 form
34 * elements
35 *
36 * Type: Boolean
37 */
38
39$iota-base-initialize-html5-form-elements: false;
40
41
42@import 'node_modules/iotacss/base/initialize';