bl-css 0.7.0 → 0.7.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 +4 -10
  2. package/bl.css +4 -0
  3. package/package.json +6 -5
package/README.md CHANGED
@@ -1,12 +1,6 @@
1
1
  # bl CSS
2
2
  A *lightweight*, **blueviolet**, ***small*** CSS framework!
3
- [!IMPORTANT]
4
- Add this to your HTML!!!
5
- ```html
6
- <link rel="preconnect" href="https://fonts.googleapis.com">
7
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
8
- <link href="https://fonts.googleapis.com/css2?family=Lilita+One&display=swap" rel="stylesheet">
9
- <link href="https://fonts.googleapis.com/css2?family=Cause:wght@700&display=swap" rel="stylesheet">
10
- <link rel="stylesheet" href="bl.css">
11
- ```
12
- Have a nice day using it **:D**
3
+ # 0.7.1 - Release notes(by Dev)
4
+ Idk but I guess people *might've* got angry at me for not putting the ```@import url(link-to-font)``` in the **CSS** itself but now, It is finally in the CSS :D! Plus I fixed the linkbtn class :D!
5
+
6
+ Have a Nice day Using it **:D**
package/bl.css CHANGED
@@ -1,3 +1,5 @@
1
+ @import url(https://fonts.googleapis.com/css2?family=Lilita+One&display=swap);
2
+ @import url(https://fonts.googleapis.com/css2?family=Cause:wght@700&display=swap);
1
3
  body{
2
4
  background-color: black;
3
5
  color: white;
@@ -96,6 +98,7 @@ body{
96
98
  }
97
99
  .linkbtn{
98
100
  display: table;
101
+ color: white;
99
102
  font-family: "Cause";
100
103
  padding: 5px;
101
104
  border: rgba(128,128,128,0.6) 2px solid;
@@ -105,6 +108,7 @@ body{
105
108
  transition: 0.4s ease;
106
109
  }
107
110
  .linkbtn:hover{
111
+ color: white;
108
112
  transform: translateY(2px);
109
113
  border: rgba(138, 43, 226,0.6) 2px solid;
110
114
  background-color: transparent;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bl-css",
3
- "version": "0.7.0",
4
- "description": "black - blueviolet small CSS framework",
3
+ "version": "0.7.1",
4
+ "description": "black - blueviolet light CSS framework",
5
5
  "main": "bl.css",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -10,9 +10,10 @@
10
10
  "exports": {
11
11
  ".": "./bl.css",
12
12
  "./info": "./README.md",
13
- "./help": "./README.md"
13
+ "./help": "./README.md",
14
+ "./style": "./bl.css"
14
15
  },
15
- "keywords": ["CSS"],
16
+ "keywords": ["CSS", "framework", "black", "blueviolet", "lightweight"],
16
17
  "author": "__fg_xd",
17
18
  "license": "MIT"
18
- }
19
+ }