@jaisocx/css-clean-start-2 1.0.1 → 1.0.3
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 +4 -0
- package/MediaAndStyles/CssCleanStart_2_main_Webpack_min.css +4 -0
- package/MediaAndStyles/CssCleanStart_2_main_relative.css +4 -0
- package/MediaAndStyles/CssCleanStart_2_main_resolved.css +78 -0
- package/MediaAndStyles/CssCleanStart_2_main_resolved_min.css +78 -0
- package/MediaAndStyles/themes/theme_darkmode/CssCleanStart_2_theme_darkmode_main.css +45 -0
- package/MediaAndStyles/themes/theme_lightmode/CssCleanStart_2_theme_lightmode_main.css +45 -0
- package/README.md +1 -1
- package/package.json +4 -5
- /package/{index.html → index.example.html} +0 -0
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
@import url("@CssCleanStart_2_MediaAndStyles/CssCleanStart_2_presets.css");
|
|
12
12
|
|
|
13
13
|
|
|
14
|
+
@import url("@CssCleanStart_2_MediaAndStyles/themes/theme_lightmode/CssCleanStart_2_theme_lightmode_main.css");
|
|
15
|
+
@import url("@CssCleanStart_2_MediaAndStyles/themes/theme_darkmode/CssCleanStart_2_theme_darkmode_main.css");
|
|
16
|
+
|
|
17
|
+
|
|
14
18
|
/* main css file, css logics with rules set via variables in the theme .css files imported above */
|
|
15
19
|
@import url("@CssCleanStart_2_MediaAndStyles/CssCleanStart_2_main.css");
|
|
16
20
|
|
|
@@ -12,6 +12,10 @@
|
|
|
12
12
|
@import url("@CssCleanStart_2_MediaAndStyles/CssCleanStart_2_presets.css");
|
|
13
13
|
|
|
14
14
|
|
|
15
|
+
@import url("@CssCleanStart_2_MediaAndStyles/themes/theme_lightmode/CssCleanStart_2_theme_lightmode_main.css");
|
|
16
|
+
@import url("@CssCleanStart_2_MediaAndStyles/themes/theme_darkmode/CssCleanStart_2_theme_darkmode_main.css");
|
|
17
|
+
|
|
18
|
+
|
|
15
19
|
/* main css file, css logics with rules set via variables in the theme .css files imported above */
|
|
16
20
|
@import url("@CssCleanStart_2_MediaAndStyles/CssCleanStart_2_main.css");
|
|
17
21
|
|
|
@@ -8,6 +8,10 @@
|
|
|
8
8
|
@import url("./themes/theme_base/responsive_size_Imports_CssCleanStart_2_theme_base_Relative.css");
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
@import url("./themes/theme_lightmode/CssCleanStart_2_theme_lightmode_main.css");
|
|
12
|
+
@import url("./themes/theme_darkmode/CssCleanStart_2_theme_darkmode_main.css");
|
|
13
|
+
|
|
14
|
+
|
|
11
15
|
@import url("./CssCleanStart_2_presets.css");
|
|
12
16
|
|
|
13
17
|
|
|
@@ -8158,6 +8158,84 @@
|
|
|
8158
8158
|
|
|
8159
8159
|
|
|
8160
8160
|
|
|
8161
|
+
.jsx.theme_lightmode,
|
|
8162
|
+
.jsx .theme_lightmode {
|
|
8163
|
+
|
|
8164
|
+
|
|
8165
|
+
--jsx--css-clean-start-2--body-tag--background: #e0e9f4;
|
|
8166
|
+
--jsx--css-clean-start-2--site--background: #fff;
|
|
8167
|
+
|
|
8168
|
+
|
|
8169
|
+
--jsx--css-clean-start-2--all-tags--color: #333;
|
|
8170
|
+
|
|
8171
|
+
--jsx--css-clean-start-2--all-tags--border-color: #ddd;
|
|
8172
|
+
--jsx--css-clean-start-2--all-tags--border-style: dotted;
|
|
8173
|
+
--jsx--css-clean-start-2--all-tags--border-width: 0;
|
|
8174
|
+
|
|
8175
|
+
|
|
8176
|
+
|
|
8177
|
+
|
|
8178
|
+
--jsx--css-clean-start-2--h--color: #567;
|
|
8179
|
+
|
|
8180
|
+
|
|
8181
|
+
|
|
8182
|
+
|
|
8183
|
+
--jsx--css-clean-start-2--anchor--color: #00f;
|
|
8184
|
+
--jsx--css-clean-start-2--anchor-hover--color: #55f;
|
|
8185
|
+
|
|
8186
|
+
--jsx--css-clean-start-2--anchor-visited--color: grey;
|
|
8187
|
+
--jsx--css-clean-start-2--anchor-visited-hover--color: grey;
|
|
8188
|
+
|
|
8189
|
+
--jsx--css-clean-start-2--anchor-active--color: #00f;
|
|
8190
|
+
--jsx--css-clean-start-2--anchor-active-hover--color: #55f;
|
|
8191
|
+
|
|
8192
|
+
|
|
8193
|
+
|
|
8194
|
+
--jsx--css-clean-start-2--thead--background-color: honeydew;
|
|
8195
|
+
--jsx--css-clean-start-2--tfoot--background-color: cornsilk;
|
|
8196
|
+
|
|
8197
|
+
}
|
|
8198
|
+
|
|
8199
|
+
|
|
8200
|
+
.jsx.theme_darkmode,
|
|
8201
|
+
.jsx .theme_darkmode {
|
|
8202
|
+
|
|
8203
|
+
|
|
8204
|
+
--jsx--css-clean-start-2--body-tag--background: #457;
|
|
8205
|
+
--jsx--css-clean-start-2--site--background: #012;
|
|
8206
|
+
|
|
8207
|
+
|
|
8208
|
+
--jsx--css-clean-start-2--all-tags--color: #adf;
|
|
8209
|
+
|
|
8210
|
+
--jsx--css-clean-start-2--all-tags--border-color: #fff;
|
|
8211
|
+
--jsx--css-clean-start-2--all-tags--border-style: dotted;
|
|
8212
|
+
--jsx--css-clean-start-2--all-tags--border-width: 0;
|
|
8213
|
+
|
|
8214
|
+
|
|
8215
|
+
|
|
8216
|
+
|
|
8217
|
+
--jsx--css-clean-start-2--h--color: #fff;
|
|
8218
|
+
|
|
8219
|
+
|
|
8220
|
+
|
|
8221
|
+
|
|
8222
|
+
--jsx--css-clean-start-2--anchor--color: #00f;
|
|
8223
|
+
--jsx--css-clean-start-2--anchor-hover--color: #55f;
|
|
8224
|
+
|
|
8225
|
+
--jsx--css-clean-start-2--anchor-visited--color: grey;
|
|
8226
|
+
--jsx--css-clean-start-2--anchor-visited-hover--color: grey;
|
|
8227
|
+
|
|
8228
|
+
--jsx--css-clean-start-2--anchor-active--color: #00f;
|
|
8229
|
+
--jsx--css-clean-start-2--anchor-active-hover--color: #55f;
|
|
8230
|
+
|
|
8231
|
+
|
|
8232
|
+
|
|
8233
|
+
--jsx--css-clean-start-2--thead--background-color: #456;
|
|
8234
|
+
--jsx--css-clean-start-2--tfoot--background-color: #456;
|
|
8235
|
+
|
|
8236
|
+
}
|
|
8237
|
+
|
|
8238
|
+
|
|
8161
8239
|
|
|
8162
8240
|
|
|
8163
8241
|
.jsx * {
|
|
@@ -4105,6 +4105,84 @@
|
|
|
4105
4105
|
|
|
4106
4106
|
|
|
4107
4107
|
|
|
4108
|
+
.jsx.theme_lightmode,
|
|
4109
|
+
.jsx .theme_lightmode {
|
|
4110
|
+
|
|
4111
|
+
|
|
4112
|
+
--jsx--css-clean-start-2--body-tag--background: #e0e9f4;
|
|
4113
|
+
--jsx--css-clean-start-2--site--background: #fff;
|
|
4114
|
+
|
|
4115
|
+
|
|
4116
|
+
--jsx--css-clean-start-2--all-tags--color: #333;
|
|
4117
|
+
|
|
4118
|
+
--jsx--css-clean-start-2--all-tags--border-color: #ddd;
|
|
4119
|
+
--jsx--css-clean-start-2--all-tags--border-style: dotted;
|
|
4120
|
+
--jsx--css-clean-start-2--all-tags--border-width: 0;
|
|
4121
|
+
|
|
4122
|
+
|
|
4123
|
+
|
|
4124
|
+
|
|
4125
|
+
--jsx--css-clean-start-2--h--color: #567;
|
|
4126
|
+
|
|
4127
|
+
|
|
4128
|
+
|
|
4129
|
+
|
|
4130
|
+
--jsx--css-clean-start-2--anchor--color: #00f;
|
|
4131
|
+
--jsx--css-clean-start-2--anchor-hover--color: #55f;
|
|
4132
|
+
|
|
4133
|
+
--jsx--css-clean-start-2--anchor-visited--color: grey;
|
|
4134
|
+
--jsx--css-clean-start-2--anchor-visited-hover--color: grey;
|
|
4135
|
+
|
|
4136
|
+
--jsx--css-clean-start-2--anchor-active--color: #00f;
|
|
4137
|
+
--jsx--css-clean-start-2--anchor-active-hover--color: #55f;
|
|
4138
|
+
|
|
4139
|
+
|
|
4140
|
+
|
|
4141
|
+
--jsx--css-clean-start-2--thead--background-color: honeydew;
|
|
4142
|
+
--jsx--css-clean-start-2--tfoot--background-color: cornsilk;
|
|
4143
|
+
|
|
4144
|
+
}
|
|
4145
|
+
|
|
4146
|
+
|
|
4147
|
+
.jsx.theme_darkmode,
|
|
4148
|
+
.jsx .theme_darkmode {
|
|
4149
|
+
|
|
4150
|
+
|
|
4151
|
+
--jsx--css-clean-start-2--body-tag--background: #457;
|
|
4152
|
+
--jsx--css-clean-start-2--site--background: #012;
|
|
4153
|
+
|
|
4154
|
+
|
|
4155
|
+
--jsx--css-clean-start-2--all-tags--color: #adf;
|
|
4156
|
+
|
|
4157
|
+
--jsx--css-clean-start-2--all-tags--border-color: #fff;
|
|
4158
|
+
--jsx--css-clean-start-2--all-tags--border-style: dotted;
|
|
4159
|
+
--jsx--css-clean-start-2--all-tags--border-width: 0;
|
|
4160
|
+
|
|
4161
|
+
|
|
4162
|
+
|
|
4163
|
+
|
|
4164
|
+
--jsx--css-clean-start-2--h--color: #fff;
|
|
4165
|
+
|
|
4166
|
+
|
|
4167
|
+
|
|
4168
|
+
|
|
4169
|
+
--jsx--css-clean-start-2--anchor--color: #00f;
|
|
4170
|
+
--jsx--css-clean-start-2--anchor-hover--color: #55f;
|
|
4171
|
+
|
|
4172
|
+
--jsx--css-clean-start-2--anchor-visited--color: grey;
|
|
4173
|
+
--jsx--css-clean-start-2--anchor-visited-hover--color: grey;
|
|
4174
|
+
|
|
4175
|
+
--jsx--css-clean-start-2--anchor-active--color: #00f;
|
|
4176
|
+
--jsx--css-clean-start-2--anchor-active-hover--color: #55f;
|
|
4177
|
+
|
|
4178
|
+
|
|
4179
|
+
|
|
4180
|
+
--jsx--css-clean-start-2--thead--background-color: #456;
|
|
4181
|
+
--jsx--css-clean-start-2--tfoot--background-color: #456;
|
|
4182
|
+
|
|
4183
|
+
}
|
|
4184
|
+
|
|
4185
|
+
|
|
4108
4186
|
|
|
4109
4187
|
|
|
4110
4188
|
.jsx * {
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
.jsx.theme_darkmode,
|
|
3
|
+
.jsx .theme_darkmode {
|
|
4
|
+
|
|
5
|
+
/** -------------------------------
|
|
6
|
+
background styles of the html elem <body>, and, the direct anchester html elem <main>
|
|
7
|
+
*/
|
|
8
|
+
--jsx--css-clean-start-2--body-tag--background: #457;
|
|
9
|
+
--jsx--css-clean-start-2--site--background: #012;
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
--jsx--css-clean-start-2--all-tags--color: #adf;
|
|
13
|
+
|
|
14
|
+
--jsx--css-clean-start-2--all-tags--border-color: #fff;
|
|
15
|
+
--jsx--css-clean-start-2--all-tags--border-style: dotted;
|
|
16
|
+
--jsx--css-clean-start-2--all-tags--border-width: 0;
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
/** -------------------------------
|
|
21
|
+
h1 til h6 styles
|
|
22
|
+
*/
|
|
23
|
+
--jsx--css-clean-start-2--h--color: #fff;
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
/** -------------------------------
|
|
28
|
+
hyperlnks text colors
|
|
29
|
+
*/
|
|
30
|
+
--jsx--css-clean-start-2--anchor--color: #00f;
|
|
31
|
+
--jsx--css-clean-start-2--anchor-hover--color: #55f;
|
|
32
|
+
|
|
33
|
+
--jsx--css-clean-start-2--anchor-visited--color: grey;
|
|
34
|
+
--jsx--css-clean-start-2--anchor-visited-hover--color: grey;
|
|
35
|
+
|
|
36
|
+
--jsx--css-clean-start-2--anchor-active--color: #00f;
|
|
37
|
+
--jsx--css-clean-start-2--anchor-active-hover--color: #55f;
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
--jsx--css-clean-start-2--thead--background-color: #456;
|
|
42
|
+
--jsx--css-clean-start-2--tfoot--background-color: #456;
|
|
43
|
+
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
.jsx.theme_lightmode,
|
|
3
|
+
.jsx .theme_lightmode {
|
|
4
|
+
|
|
5
|
+
/** -------------------------------
|
|
6
|
+
background styles of the html elem <body>, and, the direct anchester html elem <main>
|
|
7
|
+
*/
|
|
8
|
+
--jsx--css-clean-start-2--body-tag--background: #e0e9f4;
|
|
9
|
+
--jsx--css-clean-start-2--site--background: #fff;
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
--jsx--css-clean-start-2--all-tags--color: #333;
|
|
13
|
+
|
|
14
|
+
--jsx--css-clean-start-2--all-tags--border-color: #ddd;
|
|
15
|
+
--jsx--css-clean-start-2--all-tags--border-style: dotted;
|
|
16
|
+
--jsx--css-clean-start-2--all-tags--border-width: 0;
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
/** -------------------------------
|
|
21
|
+
h1 til h6 styles
|
|
22
|
+
*/
|
|
23
|
+
--jsx--css-clean-start-2--h--color: #567;
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
/** -------------------------------
|
|
28
|
+
hyperlnks text colors
|
|
29
|
+
*/
|
|
30
|
+
--jsx--css-clean-start-2--anchor--color: #00f;
|
|
31
|
+
--jsx--css-clean-start-2--anchor-hover--color: #55f;
|
|
32
|
+
|
|
33
|
+
--jsx--css-clean-start-2--anchor-visited--color: grey;
|
|
34
|
+
--jsx--css-clean-start-2--anchor-visited-hover--color: grey;
|
|
35
|
+
|
|
36
|
+
--jsx--css-clean-start-2--anchor-active--color: #00f;
|
|
37
|
+
--jsx--css-clean-start-2--anchor-active-hover--color: #55f;
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
--jsx--css-clean-start-2--thead--background-color: honeydew;
|
|
42
|
+
--jsx--css-clean-start-2--tfoot--background-color: cornsilk;
|
|
43
|
+
|
|
44
|
+
}
|
|
45
|
+
|
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ several .css files will be loaded with size of very few KB.
|
|
|
40
40
|
|
|
41
41
|
## Watch site in action
|
|
42
42
|
|
|
43
|
-
[https://sandbox.brightday.email/sites_tools/css_tools/CssCleanStart_2/index.html](https://sandbox.brightday.email/sites_tools/css_tools/CssCleanStart_2/index.html)
|
|
43
|
+
[https://sandbox.brightday.email/sites_tools/css_tools/CssCleanStart_2/index.example.html](https://sandbox.brightday.email/sites_tools/css_tools/CssCleanStart_2/index.example.html)
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
|
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.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Jaisocx",
|
|
6
6
|
"keywords": [
|
|
@@ -8,16 +8,15 @@
|
|
|
8
8
|
"styles"
|
|
9
9
|
],
|
|
10
10
|
"files": [
|
|
11
|
-
"index.html",
|
|
11
|
+
"index.example.html",
|
|
12
12
|
"responsive_sizes.html",
|
|
13
13
|
|
|
14
14
|
"MediaAndStyles/*.css",
|
|
15
|
-
"MediaAndStyles/themes
|
|
16
|
-
"MediaAndStyles/fonts
|
|
15
|
+
"MediaAndStyles/themes",
|
|
16
|
+
"MediaAndStyles/fonts",
|
|
17
17
|
|
|
18
18
|
"transpiled/CommonJS",
|
|
19
19
|
"transpiled/ESNext",
|
|
20
|
-
"transpiled/Simple",
|
|
21
20
|
|
|
22
21
|
"webpack.aliases.json",
|
|
23
22
|
|
|
File without changes
|