aboutsummaryrefslogtreecommitdiff
path: root/src/scss/base
diff options
context:
space:
mode:
authorPhil <phil.buschmann@tum.de>2018-05-15 11:22:35 +0200
committerPhil <phil.buschmann@tum.de>2018-05-15 11:22:35 +0200
commitf80bf66d3bb01deead290961f5d8d3b579bd4195 (patch)
tree83359ebc284136ebed93e83d886fe7df3d9e7601 /src/scss/base
parent4ef6ebf0928e23bc8677a8de6c0c0d36f47308f3 (diff)
downloadgnunet-webui-f80bf66d3bb01deead290961f5d8d3b579bd4195.tar.gz
gnunet-webui-f80bf66d3bb01deead290961f5d8d3b579bd4195.zip
SCSS with iotaCSS added
Diffstat (limited to 'src/scss/base')
-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';