@htl-stp/core 1.0.5 → 1.0.7

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.
Files changed (3) hide show
  1. package/README.md +15 -0
  2. package/package.json +18 -18
  3. package/style.css +5 -2
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # Core
2
+
3
+ Core CSS used in all "HTLSTP, but better!" projects. May be used outside of BB as well.
4
+
5
+ ## Installation
6
+
7
+ Installation via npm:
8
+ ```bash
9
+ npm install @htl-stp/core
10
+ ```
11
+
12
+ Import (vite, ng, react):
13
+ ```typescript
14
+ import "@htl-stp/core/style.css"
15
+ ```
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
- {
2
- "name": "@htl-stp/core",
3
- "version": "1.0.5",
4
- "description": "Core CSS for all of 'HLTSTP, but better!'",
5
- "main": "style.css",
6
- "repository": {
7
- "type": "git",
8
- "url": "git+https://github.com/htl-stp/core.git"
9
- },
10
- "keywords": ["css","core","htlstp-but-better"],
11
- "author": "daftvoid",
12
- "license": "MIT",
13
- "type": "commonjs",
14
- "bugs": {
15
- "url": "https://github.com/htl-stp/core/issues"
16
- },
17
- "homepage": "https://github.com/htl-stp/core#readme"
18
- }
1
+ {
2
+ "name": "@htl-stp/core",
3
+ "version": "1.0.7",
4
+ "description": "Core CSS for all of 'HLTSTP, but better!'",
5
+ "main": "style.css",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/htl-stp/core.git"
9
+ },
10
+ "keywords": ["css","core","htlstp-but-better"],
11
+ "author": "daftvoid",
12
+ "license": "MIT",
13
+ "type": "commonjs",
14
+ "bugs": {
15
+ "url": "https://github.com/htl-stp/core/issues"
16
+ },
17
+ "homepage": "https://github.com/htl-stp/core#readme"
18
+ }
package/style.css CHANGED
@@ -1,11 +1,14 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
2
+
1
3
  /* ========== Variables ========== */
2
4
  :root {
3
5
  --primary: #800bfa;
4
6
  --bg: #131313;
5
7
  --bg-light: #1a1a1a;
8
+ --bg-hover: #232323;
6
9
  --muted: #444;
7
10
  --text: #ddd;
8
- --border: #eee;
11
+ --border: #1f1f1f;
9
12
  }
10
13
 
11
14
  /* ========== Base ========== */
@@ -14,7 +17,7 @@
14
17
  box-sizing: border-box;
15
18
  margin: 0;
16
19
  padding: 0;
17
- font-family: 'system-ui', sans-serif;
20
+ font-family: system-ui, sans-serif;
18
21
  }
19
22
 
20
23
  body, html {