bl-css 0.9.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 +2 -3
  2. package/bl.css +2 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,7 @@
1
1
  # bl CSS
2
2
  A *lightweight*, **blueviolet**, ***small*** CSS framework!
3
- # 0.9.0 - Release notes(by Dev)
4
- So I finally added cards! They use the --_ variable and you can customize it to your needs!
5
- Have a great day :D
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 :))
6
5
  # How to Change Accent Color?
7
6
  To change from the **original** blueviolet theme you have to open the main```bl.css``` file and you can change the following:
8
7
  ```css
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);
@@ -150,4 +150,5 @@ body{
150
150
  .card:hover{
151
151
  transform: translateY(-3px);
152
152
  box-shadow: 0 0 10px var(--_);
153
+ }
153
154
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bl-css",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "black - blueviolet lightweight CSS framework",
5
5
  "main": "bl.css",
6
6
  "scripts": {