bl-css 0.8.0 → 0.9.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.
Files changed (3) hide show
  1. package/README.md +6 -5
  2. package/bl.css +17 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,15 +1,16 @@
1
1
  # bl CSS
2
2
  A *lightweight*, **blueviolet**, ***small*** CSS framework!
3
- # 0.8.0 - Release notes(by Dev)
4
- A long way of 4 patches and a new minor release! This release targets the 'custom color' aspect. I updated bl-css so that you can FINALLY, use your own custom colors... yeah you need to download it and change the original file, but its EASY!
3
+ # 0.9.1 - Release notes(by Dev)
4
+ Oops! I forgot to add ```@layer low{}``` to the CSS, well the patch is fixed (and you might want to read 0.9.0 for the cards :))
5
5
  # How to Change Accent Color?
6
6
  To change from the **original** blueviolet theme you have to open the main```bl.css``` file and you can change the following:
7
7
  ```css
8
8
  :root{
9
- --_: rgb(// Your accent's RGB here)
10
- --_4: rgba(// Your RGB, 0.4)
11
- --_6: rgba(// Your RGB, 0.6)
9
+ --_: rgb(/* Your accent's RGB here */)
10
+ --_4: rgba(/* Your RGB */, 0.4)
11
+ --_6: rgba(/* Your RGB */, 0.6)
12
12
  }
13
13
  ```
14
14
 
15
15
  Have a Nice day Using it **:D**
16
+ Forever Free **:D**
package/bl.css CHANGED
@@ -1,6 +1,6 @@
1
1
  @import url(https://fonts.googleapis.com/css2?family=Lilita+One&display=swap);
2
2
  @import url(https://fonts.googleapis.com/css2?family=Cause:wght@700&display=swap);
3
-
3
+ @layer low{
4
4
  :root{
5
5
  --_: rgb(138, 43, 226);
6
6
  --_4: rgba(138, 43, 226, 0.4);
@@ -136,3 +136,19 @@ body{
136
136
  color: var(--_);
137
137
  transition: 0.1s ease;
138
138
  }
139
+ .card{
140
+ display: flex;
141
+ flex-direction: column;
142
+ width: fit-content;
143
+ text-align: center;
144
+ padding: 10px;
145
+ box-shadow: 0 0 5px var(--_);
146
+ background-color: black;
147
+ border-radius: 5px;
148
+ transition: 0.4s ease;
149
+ }
150
+ .card:hover{
151
+ transform: translateY(-3px);
152
+ box-shadow: 0 0 10px var(--_);
153
+ }
154
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bl-css",
3
- "version": "0.8.0",
3
+ "version": "0.9.1",
4
4
  "description": "black - blueviolet lightweight CSS framework",
5
5
  "main": "bl.css",
6
6
  "scripts": {
@@ -17,7 +17,7 @@
17
17
  "./help": "./README.md",
18
18
  "./style": "./bl.css"
19
19
  },
20
- "keywords": ["css", "framework", "black", "blueviolet", "lightweight"],
20
+ "keywords": ["css", "framework", "dark", "blueviolet", "lightweight", "simple"],
21
21
  "author": "__fg_xd",
22
22
  "license": "MIT"
23
23
  }