@jaisocx/css-clean-start-2 1.0.3 → 1.0.4
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/MediaAndStyles/CssCleanStart_2_main_Webpack.css +6 -0
- package/MediaAndStyles/CssCleanStart_2_main_Webpack_min.css +4 -0
- package/MediaAndStyles/CssCleanStart_2_main_relative.css +11 -1
- package/MediaAndStyles/CssCleanStart_2_main_resolved.css +40 -0
- package/MediaAndStyles/CssCleanStart_2_main_resolved_min.css +40 -0
- package/MediaAndStyles/themes/theme_visible_height/theme_visible_height.css +39 -0
- package/package.json +2 -2
|
@@ -8,6 +8,12 @@
|
|
|
8
8
|
@import url("@CssCleanStart_2_MediaAndStyles/themes/theme_base/responsive_size_Imports_CssCleanStart_2_theme_base_Webpack.css");
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
|
|
12
|
+
/* layout theme */
|
|
13
|
+
@import url("@CssCleanStart_2_MediaAndStyles/themes/theme_visible_height/theme_visible_height.css");
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
11
17
|
@import url("@CssCleanStart_2_MediaAndStyles/CssCleanStart_2_presets.css");
|
|
12
18
|
|
|
13
19
|
|
|
@@ -9,6 +9,10 @@
|
|
|
9
9
|
@import url("@CssCleanStart_2_MediaAndStyles/themes/theme_base/responsive_size_Imports_CssCleanStart_2_theme_base_Webpack_min.css");
|
|
10
10
|
|
|
11
11
|
|
|
12
|
+
/* layout theme */
|
|
13
|
+
@import url("@CssCleanStart_2_MediaAndStyles/themes/theme_visible_height/theme_visible_height.css");
|
|
14
|
+
|
|
15
|
+
|
|
12
16
|
@import url("@CssCleanStart_2_MediaAndStyles/CssCleanStart_2_presets.css");
|
|
13
17
|
|
|
14
18
|
|
|
@@ -8,14 +8,24 @@
|
|
|
8
8
|
@import url("./themes/theme_base/responsive_size_Imports_CssCleanStart_2_theme_base_Relative.css");
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
|
|
12
|
+
/* color themes */
|
|
11
13
|
@import url("./themes/theme_lightmode/CssCleanStart_2_theme_lightmode_main.css");
|
|
12
14
|
@import url("./themes/theme_darkmode/CssCleanStart_2_theme_darkmode_main.css");
|
|
13
15
|
|
|
14
16
|
|
|
17
|
+
|
|
18
|
+
/* layout theme */
|
|
19
|
+
@import url("./themes/theme_visible_height/theme_visible_height.css");
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
/* example css code blocks */
|
|
15
24
|
@import url("./CssCleanStart_2_presets.css");
|
|
16
25
|
|
|
17
26
|
|
|
18
|
-
|
|
27
|
+
|
|
28
|
+
/* the main css file, css logics with rules set via variables in the theme .css files imported above */
|
|
19
29
|
@import url("./CssCleanStart_2_main.css");
|
|
20
30
|
|
|
21
31
|
|
|
@@ -8125,6 +8125,46 @@
|
|
|
8125
8125
|
|
|
8126
8126
|
|
|
8127
8127
|
|
|
8128
|
+
.jsx.theme_visible_height {
|
|
8129
|
+
|
|
8130
|
+
--jsx--css-clean-start-2--body-tag--height: 100vh;
|
|
8131
|
+
--jsx--css-clean-start-2--body-tag--max-height: 100vh;
|
|
8132
|
+
--jsx--css-clean-start-2--body-tag--min-height: 100vh;
|
|
8133
|
+
|
|
8134
|
+
--jsx--css-clean-start-2--body-tag--overflow-y: hidden;
|
|
8135
|
+
|
|
8136
|
+
|
|
8137
|
+
|
|
8138
|
+
--jsx--css-clean-start-2--site--height: 100%;
|
|
8139
|
+
--jsx--css-clean-start-2--site--max-height: 100%;
|
|
8140
|
+
--jsx--css-clean-start-2--site--min-height: 100%;
|
|
8141
|
+
|
|
8142
|
+
--jsx--css-clean-start-2--site--overflow-y: hidden;
|
|
8143
|
+
|
|
8144
|
+
}
|
|
8145
|
+
|
|
8146
|
+
|
|
8147
|
+
|
|
8148
|
+
.jsx.theme_visible_height body main {
|
|
8149
|
+
display: flex;
|
|
8150
|
+
flex-direction: column;
|
|
8151
|
+
align-items: stretch;
|
|
8152
|
+
justify-content: stretch;
|
|
8153
|
+
}
|
|
8154
|
+
|
|
8155
|
+
|
|
8156
|
+
|
|
8157
|
+
|
|
8158
|
+
.jsx.theme_visible_height main.a-tag-in-main-tag {
|
|
8159
|
+
|
|
8160
|
+
flex-grow: 1;
|
|
8161
|
+
|
|
8162
|
+
}
|
|
8163
|
+
|
|
8164
|
+
|
|
8165
|
+
|
|
8166
|
+
|
|
8167
|
+
|
|
8128
8168
|
|
|
8129
8169
|
.jsx.small {
|
|
8130
8170
|
--jsx--css-clean-start-2--body-tag--height: 100vh;
|
|
@@ -4072,6 +4072,46 @@
|
|
|
4072
4072
|
|
|
4073
4073
|
|
|
4074
4074
|
|
|
4075
|
+
.jsx.theme_visible_height {
|
|
4076
|
+
|
|
4077
|
+
--jsx--css-clean-start-2--body-tag--height: 100vh;
|
|
4078
|
+
--jsx--css-clean-start-2--body-tag--max-height: 100vh;
|
|
4079
|
+
--jsx--css-clean-start-2--body-tag--min-height: 100vh;
|
|
4080
|
+
|
|
4081
|
+
--jsx--css-clean-start-2--body-tag--overflow-y: hidden;
|
|
4082
|
+
|
|
4083
|
+
|
|
4084
|
+
|
|
4085
|
+
--jsx--css-clean-start-2--site--height: 100%;
|
|
4086
|
+
--jsx--css-clean-start-2--site--max-height: 100%;
|
|
4087
|
+
--jsx--css-clean-start-2--site--min-height: 100%;
|
|
4088
|
+
|
|
4089
|
+
--jsx--css-clean-start-2--site--overflow-y: hidden;
|
|
4090
|
+
|
|
4091
|
+
}
|
|
4092
|
+
|
|
4093
|
+
|
|
4094
|
+
|
|
4095
|
+
.jsx.theme_visible_height body main {
|
|
4096
|
+
display: flex;
|
|
4097
|
+
flex-direction: column;
|
|
4098
|
+
align-items: stretch;
|
|
4099
|
+
justify-content: stretch;
|
|
4100
|
+
}
|
|
4101
|
+
|
|
4102
|
+
|
|
4103
|
+
|
|
4104
|
+
|
|
4105
|
+
.jsx.theme_visible_height main.a-tag-in-main-tag {
|
|
4106
|
+
|
|
4107
|
+
flex-grow: 1;
|
|
4108
|
+
|
|
4109
|
+
}
|
|
4110
|
+
|
|
4111
|
+
|
|
4112
|
+
|
|
4113
|
+
|
|
4114
|
+
|
|
4075
4115
|
|
|
4076
4116
|
.jsx.small {
|
|
4077
4117
|
--jsx--css-clean-start-2--body-tag--height: 100vh;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/* a layout theme */
|
|
2
|
+
|
|
3
|
+
.jsx.theme_visible_height {
|
|
4
|
+
|
|
5
|
+
--jsx--css-clean-start-2--body-tag--height: 100vh;
|
|
6
|
+
--jsx--css-clean-start-2--body-tag--max-height: 100vh;
|
|
7
|
+
--jsx--css-clean-start-2--body-tag--min-height: 100vh;
|
|
8
|
+
|
|
9
|
+
--jsx--css-clean-start-2--body-tag--overflow-y: hidden;
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
--jsx--css-clean-start-2--site--height: 100%;
|
|
14
|
+
--jsx--css-clean-start-2--site--max-height: 100%;
|
|
15
|
+
--jsx--css-clean-start-2--site--min-height: 100%;
|
|
16
|
+
|
|
17
|
+
--jsx--css-clean-start-2--site--overflow-y: hidden;
|
|
18
|
+
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
.jsx.theme_visible_height body main {
|
|
24
|
+
display: flex;
|
|
25
|
+
flex-direction: column;
|
|
26
|
+
align-items: stretch;
|
|
27
|
+
justify-content: stretch;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
/* example when this theme css class is set in the root html tag */
|
|
33
|
+
.jsx.theme_visible_height main.a-tag-in-main-tag {
|
|
34
|
+
|
|
35
|
+
flex-grow: 1;
|
|
36
|
+
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jaisocx/css-clean-start-2",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Jaisocx",
|
|
6
6
|
"keywords": [
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"README.md"
|
|
24
24
|
],
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"@jaisocx/responsive-sizes": "~1.
|
|
26
|
+
"@jaisocx/responsive-sizes": "~1.3.1"
|
|
27
27
|
},
|
|
28
28
|
"private": false,
|
|
29
29
|
"publishConfig": {
|