fscss 1.1.0 → 1.1.1

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 CHANGED
@@ -1,2 +1,8 @@
1
- # fscss
2
- Figured Shorthand Cascading Style Sheet (FSCSS)
1
+ # FSCSS
2
+ Figured Shorthand Cascading Style Sheet (FSCSS)
3
+ <br>
4
+ <small>
5
+ For simplifying CSS coding by introducing shorthand syntax and variables.
6
+ </small>
7
+ <br>
8
+ <pre><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR6m6fO1LCMWUVuZQLVBMRjZXSXfb4zd0B_QVdipRHEo9WtL-AJOg0PDBY&s=10" width=10 height=10><b>FSCSS</b><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTisdVQwV1zoxddr3NQUXUu5qRcD1GcILE4IVr8d6d9t6xmasC2QUnHzfla&s=10" width=10 height=10></pre>
package/package.json CHANGED
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "name": "fscss",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Figured Shorthand Cascading Style Sheet",
5
5
  "keywords": [
6
6
  "node",
7
7
  "express",
8
8
  "npm",
9
9
  "fscss",
10
- "xfscss",
11
10
  "figsh_css"
12
11
  ],
13
12
  "homepage": "https://github.com/Figsh/xfscss#readme",
@@ -29,7 +28,7 @@
29
28
  "dependencies": {
30
29
  "dotenv": "^16.0.3",
31
30
  "express": "^4.18.2",
32
- "fscss": "^1.1.0"
31
+ "fscss": "^1.1.1"
33
32
  },
34
33
  "devDependencies": {
35
34
  "chai": "^4.3.4",
@@ -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
+