bl-css 0.6.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 +23 -0
  3. package/package.json +7 -6
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;
@@ -93,4 +95,25 @@ body{
93
95
  .link:hover{
94
96
  color: blueviolet;
95
97
  text-decoration-color: blueviolet;
98
+ }
99
+ .linkbtn{
100
+ display: table;
101
+ color: white;
102
+ font-family: "Cause";
103
+ padding: 5px;
104
+ border: rgba(128,128,128,0.6) 2px solid;
105
+ background-color: rgba(255,255,255,0.4);
106
+ border-radius: 7px;
107
+ transform: translateY(0px);
108
+ transition: 0.4s ease;
109
+ }
110
+ .linkbtn:hover{
111
+ color: white;
112
+ transform: translateY(2px);
113
+ border: rgba(138, 43, 226,0.6) 2px solid;
114
+ background-color: transparent;
115
+ }
116
+ .linkbtn:active{
117
+ transform: translateY(3px);
118
+ color: blueviolet;
96
119
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bl-css",
3
- "version": "0.6.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": [],
16
- "author": "",
16
+ "keywords": ["CSS", "framework", "black", "blueviolet", "lightweight"],
17
+ "author": "__fg_xd",
17
18
  "license": "MIT"
18
- }
19
+ }