fscss 1.1.0 → 1.1.2
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/README.md +11 -2
- package/devcontainer.json +2 -0
- package/package.json +4 -4
- package/strg/de +5 -0
- package/strg/xvars.fscss +17 -0
package/README.md
CHANGED
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
1
|
+
# FSCSS
|
|
2
|
+
<a href="https://opencollective.com/fscss"><img src="https://i.ibb.co/hFP9xZr8/fscss-icon.jpg" alt="FSCSS Style Sheet" border="0" width="30" height="10"></a>
|
|
3
|
+
Figured Shorthand Cascading Style Sheet (FSCSS)
|
|
4
|
+
<br>
|
|
5
|
+
<small>
|
|
6
|
+
For simplifying CSS coding by introducing shorthand syntax and variables.
|
|
7
|
+
</small>
|
|
8
|
+
<br>
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fscss",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Figured Shorthand Cascading Style Sheet",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"node",
|
|
7
7
|
"express",
|
|
8
8
|
"npm",
|
|
9
9
|
"fscss",
|
|
10
|
-
"
|
|
11
|
-
"
|
|
10
|
+
"shorthand",
|
|
11
|
+
"css"
|
|
12
12
|
],
|
|
13
13
|
"homepage": "https://github.com/Figsh/xfscss#readme",
|
|
14
14
|
"bugs": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"dotenv": "^16.0.3",
|
|
31
31
|
"express": "^4.18.2",
|
|
32
|
-
"fscss": "^1.1.
|
|
32
|
+
"fscss": "^1.1.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"chai": "^4.3.4",
|
package/strg/de
ADDED
package/strg/xvars.fscss
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
|
|
2
|
+
/* == as initial values == */
|
|
3
|
+
$init-border: 2px groove lightgreen;
|
|
4
|
+
$init-outline: 2px groove lightblue;
|
|
5
|
+
$init-box-size: 1100px;
|
|
6
|
+
$init-color: #312213;
|
|
7
|
+
$init-font: 15px Arial, sans-serif;
|
|
8
|
+
$init-background-stack: linear-gradient(#fee, #eff);
|
|
9
|
+
/* == initial values ended == */
|
|
10
|
+
|
|
11
|
+
/* == as Global variables == */
|
|
12
|
+
$black-du: mx(#,"1");
|
|
13
|
+
$front-card-z-index: 5;
|
|
14
|
+
$back-card-z-index: -1;
|
|
15
|
+
$line-cont: rpt(8,"_");
|
|
16
|
+
/* == Global variables ended == */
|
|
17
|
+
|