noctemyth 0.0.36
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.
- package/LICENSE +21 -0
- package/README.md +60 -0
- package/dist/css/noctemyth-skelton.css +11880 -0
- package/dist/css/noctemyth-skelton.css.map +1 -0
- package/dist/css/noctemyth-skelton.min.css +11880 -0
- package/dist/css/noctemyth-skelton.min.css.map +1 -0
- package/dist/css/noctemyth-utilities.css +142390 -0
- package/dist/css/noctemyth-utilities.css.map +1 -0
- package/dist/css/noctemyth-utilities.min.css +142390 -0
- package/dist/css/noctemyth-utilities.min.css.map +1 -0
- package/dist/css/noctemyth.css +51864 -0
- package/dist/css/noctemyth.css.map +1 -0
- package/dist/css/noctemyth.min.css +26439 -0
- package/dist/css/noctemyth.min.css.map +1 -0
- package/package.json +61 -0
- package/src/animations/fade.scss +41 -0
- package/src/animations/index.scss +1 -0
- package/src/backgrounds/dot.scss +55 -0
- package/src/backgrounds/gingham.scss +56 -0
- package/src/backgrounds/index.scss +5 -0
- package/src/backgrounds/rhombus.scss +49 -0
- package/src/backgrounds/stripe.scss +45 -0
- package/src/backgrounds/zigzag.scss +71 -0
- package/src/base/dub.scss +9 -0
- package/src/base/element.scss +5 -0
- package/src/base/index.scss +3 -0
- package/src/base/normalize.scss +394 -0
- package/src/components/accordion.scss +179 -0
- package/src/components/badge.scss +109 -0
- package/src/components/blockquote.scss +92 -0
- package/src/components/breadcrumbs.scss +47 -0
- package/src/components/button.scss +157 -0
- package/src/components/card.scss +89 -0
- package/src/components/dialogue.scss +452 -0
- package/src/components/div.scss +7 -0
- package/src/components/footer.scss +21 -0
- package/src/components/hamburger.scss +157 -0
- package/src/components/header.scss +36 -0
- package/src/components/heading.scss +40 -0
- package/src/components/image.scss +10 -0
- package/src/components/index.scss +26 -0
- package/src/components/input.scss +338 -0
- package/src/components/label.scss +17 -0
- package/src/components/link.scss +29 -0
- package/src/components/list.scss +16 -0
- package/src/components/loader.scss +72 -0
- package/src/components/main.scss +8 -0
- package/src/components/message.scss +53 -0
- package/src/components/modal.scss +41 -0
- package/src/components/nav.scss +387 -0
- package/src/components/paragraph.scss +12 -0
- package/src/components/progress.scss +43 -0
- package/src/components/section.scss +7 -0
- package/src/components/span.scss +7 -0
- package/src/css-variables/animation.scss +11 -0
- package/src/css-variables/border.scss +16 -0
- package/src/css-variables/color.scss +604 -0
- package/src/css-variables/components/breadcrumbs.scss +5 -0
- package/src/css-variables/components/button.scss +6 -0
- package/src/css-variables/components/dialogue.scss +15 -0
- package/src/css-variables/components/header.scss +7 -0
- package/src/css-variables/components/heading.scss +5 -0
- package/src/css-variables/components/index.scss +5 -0
- package/src/css-variables/index.scss +7 -0
- package/src/css-variables/miscellaneous.scss +8 -0
- package/src/css-variables/typography.scss +24 -0
- package/src/functions/index.scss +1 -0
- package/src/functions/string.scss +31 -0
- package/src/icons/check.scss +21 -0
- package/src/icons/chevron.scss +30 -0
- package/src/icons/index.scss +2 -0
- package/src/layouts/centering.scss +13 -0
- package/src/layouts/columns.scss +97 -0
- package/src/layouts/container.scss +59 -0
- package/src/layouts/index.scss +3 -0
- package/src/mixins/animation.scss +80 -0
- package/src/mixins/color.scss +33 -0
- package/src/mixins/element.scss +5 -0
- package/src/mixins/index.scss +5 -0
- package/src/mixins/responsive.scss +222 -0
- package/src/noctemyth-skelton.scss +12 -0
- package/src/noctemyth-utilities.scss +3 -0
- package/src/noctemyth.scss +9 -0
- package/src/utilities/border.scss +46 -0
- package/src/utilities/color.scss +327 -0
- package/src/utilities/decoration.scss +16 -0
- package/src/utilities/index.scss +7 -0
- package/src/utilities/positioning.scss +90 -0
- package/src/utilities/sizing.scss +142 -0
- package/src/utilities/spacing.scss +154 -0
- package/src/utilities/typography.scss +109 -0
- package/src/variables/animation.scss +8 -0
- package/src/variables/border.scss +81 -0
- package/src/variables/color.scss +1371 -0
- package/src/variables/components/breadcrumbs.scss +3 -0
- package/src/variables/components/button.scss +3 -0
- package/src/variables/components/dialogue.scss +12 -0
- package/src/variables/components/header.scss +3 -0
- package/src/variables/components/heading.scss +3 -0
- package/src/variables/components/index.scss +5 -0
- package/src/variables/index.scss +8 -0
- package/src/variables/layout.scss +28 -0
- package/src/variables/miscellaneous.scss +14 -0
- package/src/variables/typography.scss +26 -0
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
@use "sass:string";
|
|
2
|
+
@use "../functions/index.scss" as functions;
|
|
3
|
+
|
|
4
|
+
.margin-auto,
|
|
5
|
+
.m-auto {
|
|
6
|
+
margin: auto !important;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.margin-top-auto,
|
|
10
|
+
.mt-auto {
|
|
11
|
+
margin-top: auto !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.margin-right-auto,
|
|
15
|
+
.mr-auto {
|
|
16
|
+
margin-right: auto !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.margin-bottom-auto,
|
|
20
|
+
.mb-auto {
|
|
21
|
+
margin-bottom: auto !important;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.margin-left-auto,
|
|
25
|
+
.ml-auto {
|
|
26
|
+
margin-left: auto !important;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.margin-x-auto,
|
|
30
|
+
.mx-auto {
|
|
31
|
+
margin-right: auto !important;
|
|
32
|
+
margin-left: auto !important;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.margin-y-auto,
|
|
36
|
+
.my-auto {
|
|
37
|
+
margin-top: auto !important;
|
|
38
|
+
margin-bottom: auto !important;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.padding-auto,
|
|
42
|
+
.p-auto {
|
|
43
|
+
padding: auto !important;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.padding-top-auto,
|
|
47
|
+
.pt-auto {
|
|
48
|
+
padding-top: auto !important;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.padding-right-auto,
|
|
52
|
+
.pr-auto {
|
|
53
|
+
padding-right: auto !important;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.padding-bottom-auto,
|
|
57
|
+
.pb-auto {
|
|
58
|
+
padding-bottom: auto !important;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.padding-left-auto,
|
|
62
|
+
.pl-auto {
|
|
63
|
+
padding-left: auto !important;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.padding-x-auto,
|
|
67
|
+
.px-auto {
|
|
68
|
+
padding-right: auto !important;
|
|
69
|
+
padding-left: auto !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.padding-y-auto,
|
|
73
|
+
.py-auto {
|
|
74
|
+
padding-top: auto !important;
|
|
75
|
+
padding-bottom: auto !important;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@for $p from 0 through 40 {
|
|
79
|
+
$suffix: functions.strReplace(#{($p * 0.25)}, ".", "\\.");
|
|
80
|
+
|
|
81
|
+
.margin-#{$suffix}rem,
|
|
82
|
+
.m-#{$suffix}rem {
|
|
83
|
+
margin: $p * 0.25rem !important;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.margin-top-#{$suffix}rem,
|
|
87
|
+
.mt-#{$suffix}rem {
|
|
88
|
+
margin-top: $p * 0.25rem !important;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.margin-right-#{$suffix}rem,
|
|
92
|
+
.mr-#{$suffix}rem {
|
|
93
|
+
margin-right: $p * 0.25rem !important;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.margin-bottom-#{$suffix}rem,
|
|
97
|
+
.mb-#{$suffix}rem {
|
|
98
|
+
margin-bottom: $p * 0.25rem !important;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.margin-left-#{$suffix}rem,
|
|
102
|
+
.ml-#{$suffix}rem {
|
|
103
|
+
margin-left: $p * 0.25rem !important;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.margin-x-#{$suffix}rem,
|
|
107
|
+
.mx-#{$suffix}rem {
|
|
108
|
+
margin-right: $p * 0.25rem !important;
|
|
109
|
+
margin-left: $p * 0.25rem !important;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.margin-y-#{$suffix}rem,
|
|
113
|
+
.my-#{$suffix}rem {
|
|
114
|
+
margin-top: $p * 0.25rem !important;
|
|
115
|
+
margin-bottom: $p * 0.25rem !important;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.padding-#{$suffix}rem,
|
|
119
|
+
.p-#{$suffix}rem {
|
|
120
|
+
padding: $p * 0.25rem !important;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.padding-top-#{$suffix}rem,
|
|
124
|
+
.pt-#{$suffix}rem {
|
|
125
|
+
padding-top: $p * 0.25rem !important;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.padding-right-#{$suffix}rem,
|
|
129
|
+
.pr-#{$suffix}rem {
|
|
130
|
+
padding-right: $p * 0.25rem !important;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.padding-bottom-#{$suffix}rem,
|
|
134
|
+
.pb-#{$suffix}rem {
|
|
135
|
+
padding-bottom: $p * 0.25rem !important;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.padding-left-#{$suffix}rem,
|
|
139
|
+
.pl-#{$suffix}rem {
|
|
140
|
+
padding-left: $p * 0.25rem !important;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.padding-x-#{$suffix}rem,
|
|
144
|
+
.px-#{$suffix}rem {
|
|
145
|
+
padding-right: $p * 0.25rem !important;
|
|
146
|
+
padding-left: $p * 0.25rem !important;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.padding-y-#{$suffix}rem,
|
|
150
|
+
.py-#{$suffix}rem {
|
|
151
|
+
padding-top: $p * 0.25rem !important;
|
|
152
|
+
padding-bottom: $p * 0.25rem !important;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
@use "../variables/index.scss" as variables;
|
|
2
|
+
|
|
3
|
+
.italic {
|
|
4
|
+
font-style: italic !important;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.oblique {
|
|
8
|
+
font-style: oblique !important;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.capitalized {
|
|
12
|
+
text-transform: capitalize !important;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.lowercase {
|
|
16
|
+
text-transform: lowercase !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.uppercase {
|
|
20
|
+
text-transform: uppercase !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.text-align-left {
|
|
24
|
+
text-align: left !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.text-align-right {
|
|
28
|
+
text-align: right !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.text-align-center {
|
|
32
|
+
text-align: center !important;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.text-align-unset {
|
|
36
|
+
text-align: unset !important;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.white-space-nowrap {
|
|
40
|
+
white-space: nowrap !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.font-family-sans-serif {
|
|
44
|
+
font-family: var(--#{variables.$prefix}font-family-sans-serif);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.font-family-monospace {
|
|
48
|
+
font-family: var(--#{variables.$prefix}font-family-monospace);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.font-size-xsmall {
|
|
52
|
+
font-size: var(--#{variables.$prefix}font-size-xsmall) !important;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.font-size-small {
|
|
56
|
+
font-size: var(--#{variables.$prefix}font-size-small) !important;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.font-size-normal {
|
|
60
|
+
font-size: var(--#{variables.$prefix}font-size-normal) !important;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.font-size-medium {
|
|
64
|
+
font-size: var(--#{variables.$prefix}font-size-medium) !important;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.font-size-large {
|
|
68
|
+
font-size: var(--#{variables.$prefix}font-size-large) !important;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.font-size-xlarge {
|
|
72
|
+
font-size: var(--#{variables.$prefix}font-size-xlarge) !important;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.font-size-xxlarge {
|
|
76
|
+
font-size: var(--#{variables.$prefix}font-size-xxlarge) !important;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.font-size-xxxlarge {
|
|
80
|
+
font-size: var(--#{variables.$prefix}font-size-xxxlarge) !important;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.font-size-xxxxlarge {
|
|
84
|
+
font-size: var(--#{variables.$prefix}font-size-xxxxlarge) !important;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.font-size-xxxxxlarge {
|
|
88
|
+
font-size: var(--#{variables.$prefix}font-size-xxxxxlarge) !important;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.font-weight-light {
|
|
92
|
+
font-weight: var(--#{variables.$prefix}font-weight-light) !important;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.font-weight-normal {
|
|
96
|
+
font-weight: var(--#{variables.$prefix}font-weight-normal) !important;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.font-weight-medium {
|
|
100
|
+
font-weight: var(--#{variables.$prefix}font-weight-medium) !important;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.font-weight-semibold {
|
|
104
|
+
font-weight: var(--#{variables.$prefix}font-weight-semibold) !important;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.font-weight-bold {
|
|
108
|
+
font-weight: var(--#{variables.$prefix}font-weight-bold) !important;
|
|
109
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
$animation-speed-heavy: 4s !default;
|
|
3
|
+
$animation-speed-slower: 3s !default;
|
|
4
|
+
$animation-speed-slow: 2s !default;
|
|
5
|
+
$animation-speed-normal: 1s !default;
|
|
6
|
+
$animation-speed-fast: 750ms !default;
|
|
7
|
+
$animation-speed-faster: 500ms !default;
|
|
8
|
+
$animation-speed-flash: 250ms !default;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
$border-width-xthin: 0.05rem !default;
|
|
2
|
+
$border-width-thin: 0.075rem !default;
|
|
3
|
+
$border-width-medium: 0.1rem !default;
|
|
4
|
+
$border-width-thick: 0.15rem !default;
|
|
5
|
+
$border-width-xthick: 0.2rem !default;
|
|
6
|
+
$border-width-xxthick: 0.25rem !default;
|
|
7
|
+
$border-width-xxxthick: 0.5rem !default;
|
|
8
|
+
|
|
9
|
+
$border-radius-xsmall: 0.25rem !default;
|
|
10
|
+
$border-radius-small: 0.5rem !default;
|
|
11
|
+
$border-radius-medium: 1rem !default;
|
|
12
|
+
$border-radius-large: 1.5rem !default;
|
|
13
|
+
$border-radius-xlarge: 2rem !default;
|
|
14
|
+
$border-radius-circle: 50% !default;
|
|
15
|
+
$border-radius-pill: 50rem !default;
|
|
16
|
+
|
|
17
|
+
$borderSides: ("top", "right", "bottom", "left");
|
|
18
|
+
|
|
19
|
+
$borderStyles: ("solid", "dashed", "dotted");
|
|
20
|
+
|
|
21
|
+
$borderWidths: (
|
|
22
|
+
(
|
|
23
|
+
"name": "xthin",
|
|
24
|
+
"value": $border-width-xthin,
|
|
25
|
+
),
|
|
26
|
+
(
|
|
27
|
+
"name": "thin",
|
|
28
|
+
"value": $border-width-thin,
|
|
29
|
+
),
|
|
30
|
+
(
|
|
31
|
+
"name": "medium",
|
|
32
|
+
"value": $border-width-medium,
|
|
33
|
+
),
|
|
34
|
+
(
|
|
35
|
+
"name": "thick",
|
|
36
|
+
"value": $border-width-thick,
|
|
37
|
+
),
|
|
38
|
+
(
|
|
39
|
+
"name": "xthick",
|
|
40
|
+
"value": $border-width-xthick,
|
|
41
|
+
),
|
|
42
|
+
(
|
|
43
|
+
"name": "xxthick",
|
|
44
|
+
"value": $border-width-xxthick,
|
|
45
|
+
),
|
|
46
|
+
(
|
|
47
|
+
"name": "xxxthick",
|
|
48
|
+
"value": $border-width-xxxthick,
|
|
49
|
+
)
|
|
50
|
+
) !default;
|
|
51
|
+
|
|
52
|
+
$borderRadiuses: (
|
|
53
|
+
(
|
|
54
|
+
"name": "xsmall",
|
|
55
|
+
"value": $border-radius-xsmall,
|
|
56
|
+
),
|
|
57
|
+
(
|
|
58
|
+
"name": "small",
|
|
59
|
+
"value": $border-radius-small,
|
|
60
|
+
),
|
|
61
|
+
(
|
|
62
|
+
"name": "medium",
|
|
63
|
+
"value": $border-radius-medium,
|
|
64
|
+
),
|
|
65
|
+
(
|
|
66
|
+
"name": "large",
|
|
67
|
+
"value": $border-radius-large,
|
|
68
|
+
),
|
|
69
|
+
(
|
|
70
|
+
"name": "xlarge",
|
|
71
|
+
"value": $border-radius-xlarge,
|
|
72
|
+
),
|
|
73
|
+
(
|
|
74
|
+
"name": "circle",
|
|
75
|
+
"value": $border-radius-circle,
|
|
76
|
+
),
|
|
77
|
+
(
|
|
78
|
+
"name": "pill",
|
|
79
|
+
"value": $border-radius-pill,
|
|
80
|
+
)
|
|
81
|
+
) !default;
|