@kerkhoff-ict/solora 0.1.0

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 (2) hide show
  1. package/dist/index.css +31 -0
  2. package/package.json +19 -0
package/dist/index.css ADDED
@@ -0,0 +1,31 @@
1
+ .btn-primary {
2
+ background: #0071e3;
3
+ color: #fff;
4
+ font-weight: 600;
5
+ border-radius: 9999px;
6
+ padding: 0.5rem 1.5rem;
7
+ border: none;
8
+ font-size: 1rem;
9
+ box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
10
+ transition: background 0.2s;
11
+ cursor: pointer;
12
+ }
13
+ .btn-primary:hover {
14
+ background: #005bb5;
15
+ }
16
+ .btn-glass {
17
+ background: rgba(255, 255, 255, 0.2);
18
+ color: #fff;
19
+ font-weight: 600;
20
+ padding: 0.5rem 1.5rem;
21
+ border-radius: 1rem;
22
+ border: 1px solid rgba(255,255,255,0.3);
23
+ backdrop-filter: blur(8px);
24
+ box-shadow: 0 4px 16px 0 rgba(0,0,0,0.10);
25
+ transition: background 0.2s, box-shadow 0.2s;
26
+ cursor: pointer;
27
+ }
28
+ .btn-glass:hover {
29
+ background: rgba(255,255,255,0.3);
30
+ box-shadow: 0 6px 24px 0 rgba(0,0,0,0.15);
31
+ }
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@kerkhoff-ict/solora",
3
+ "version": "0.1.0",
4
+ "description": "Simple CSS component library",
5
+ "main": "dist/index.css",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "scripts": {
10
+ "build": "mkdir -p dist && postcss src/index.css -o dist/index.css"
11
+ },
12
+ "author": "Kerkhoff-ICT",
13
+ "license": "MIT",
14
+ "devDependencies": {
15
+ "postcss": "^8.5.8",
16
+ "postcss-cli": "^11.0.1",
17
+ "postcss-import": "^16.1.1"
18
+ }
19
+ }