bl-css 0.9.2 → 0.10.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.
package/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  # bl CSS
2
2
  A *lightweight*, **blueviolet**, ***small*** CSS framework!
3
- # 0.9.2 - Release notes(by Dev)
4
- Added ```.card-row``` and ```.card-col``` to arrange your cards! (and included the repo)
3
+
4
+ # 0.10.1 - Release notes(by Dev)
5
+ License Update! I don't have much to include here, you can read the license on [github](https://github.com/fg-xd/bl-CSS/blob/main/LICENSE). It is a GNU LGPLv2.1 license, which basically means if you build a website, you can optionally credit me, but if you are editing the main bl-css file you must credit me and keep it open source.
5
6
  # How to Change Accent Color?
6
7
  To change from the **original** blueviolet theme you have to open the main```bl.css``` file and you can change the following:
7
8
  ```css
package/bin/sc.js CHANGED
File without changes
package/bl.css CHANGED
@@ -1,3 +1,10 @@
1
+ /*!
2
+ * bl-css
3
+ * (c) 2026 __fg_xd
4
+ * Licensed under LGPLv2.1 License
5
+ * https://github.com/fg-xd/bl-CSS
6
+ * https://npmjs.com/package/bl-css
7
+ */
1
8
  @import url(https://fonts.googleapis.com/css2?family=Lilita+One&display=swap);
2
9
  @import url(https://fonts.googleapis.com/css2?family=Cause:wght@700&display=swap);
3
10
  @layer low{
@@ -161,4 +168,49 @@ body{
161
168
  flex-direction: column;
162
169
  gap: 10px;
163
170
  }
171
+ /* Form (NEW) */
172
+ .form{
173
+ display: table;
174
+ padding: 12px;
175
+ border: var(--_4) 1px solid;
176
+ border-radius: 5px;
177
+ background-color: black;
178
+ transition: 0.4s ease;
179
+ }
180
+ .form:hover{
181
+ border: var(--_) 1px solid;
182
+ }
183
+ .form:focus-within{
184
+ border: var(--_) 1px solid;
185
+ }
186
+ .in{
187
+ display: table;
188
+ color: white;
189
+ font-family: "Cause";
190
+ padding: 5px;
191
+ background-color: black;
192
+ border: rgba(128,128,128,0.6) 1px solid;
193
+ border-radius: 5px;
194
+ transition: 0.4s ease;
195
+ }
196
+ .in:hover{
197
+ border: var(--_) 1px solid;
198
+ }
199
+ .in:focus{
200
+ border: var(--_) 1px solid;
201
+ outline: none;
202
+ }
203
+ .in::placeholder{
204
+ color: rgb(128,128,128);
205
+ font-family: "Cause";
206
+ }
207
+ .label{
208
+ font-family: "Cause";
209
+ padding: 4px 0;
210
+ color: white;
211
+ transition: 0.4s ease;
212
+ }
213
+ .label:focus-within{
214
+ color: var(--_);
215
+ }
164
216
  }
package/package.json CHANGED
@@ -1,14 +1,18 @@
1
1
  {
2
2
  "name": "bl-css",
3
- "version": "0.9.2",
3
+ "version": "0.10.1",
4
4
  "description": "black - blueviolet lightweight CSS framework",
5
5
  "main": "bl.css",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
8
8
  },
9
+ "repository":{
10
+ "type": "git",
11
+ "url": "https://github.com/fg-xd/bl-CSS.git"
12
+ },
9
13
  "bin": {
10
14
  "bl-css": "./bin/sc.js",
11
- "bl": "./bin/sc.js"
15
+ "bl": "./bin/sc.js"
12
16
  },
13
17
  "files": ["bl.css", "README.md", "sc.js"],
14
18
  "exports": {
@@ -19,5 +23,5 @@
19
23
  },
20
24
  "keywords": ["css", "framework", "dark", "blueviolet", "lightweight", "simple"],
21
25
  "author": "__fg_xd",
22
- "license": "MIT"
26
+ "license": "LGPL-2.1-only"
23
27
  }