bl-css 0.9.1 → 0.9.2

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,7 @@
1
1
  # bl CSS
2
2
  A *lightweight*, **blueviolet**, ***small*** CSS framework!
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 :))
3
+ # 0.9.2 - Release notes(by Dev)
4
+ Added ```.card-row``` and ```.card-col``` to arrange your cards! (and included the repo)
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
@@ -11,6 +11,11 @@ To change from the **original** blueviolet theme you have to open the main```bl.
11
11
  --_6: rgba(/* Your RGB */, 0.6)
12
12
  }
13
13
  ```
14
+ # Repo
15
+ The bl-css repo is on [GitHub](https://github.com/fg-xd/bl-CSS)
16
+
17
+ You can also make an issue on GitHub to request features
14
18
 
15
19
  Have a Nice day Using it **:D**
16
- Forever Free **:D**
20
+
21
+ Forever Free **:D**
package/bin/sc.js CHANGED
@@ -8,10 +8,10 @@ const dest = path.join(process.cwd(), 'bl.css');
8
8
  // Actually doing the code lol
9
9
  try {
10
10
  fs.copyFileSync(src, dest);
11
- console.log("bl CSS extracted from the Alien Trenches 🤣");
11
+ console.log("bl CSS extracted from the Alien Trenches");
12
12
  }
13
13
  catch (e) {
14
14
  console.log("The Alien has hidden the package!");
15
15
  console.log("run 'npm install bl-css' if you haven't yet")
16
16
  console.log("And don't you dare make it 'Global' bruh");
17
- }
17
+ }
package/bl.css CHANGED
@@ -16,7 +16,7 @@ body{
16
16
  background: linear-gradient(
17
17
  to bottom,
18
18
  var(--_4),
19
- var(--_),
19
+ var(--_),
20
20
  var(--_4));
21
21
  background-clip: text;
22
22
  -webkit-background-clip: text;
@@ -151,4 +151,14 @@ body{
151
151
  transform: translateY(-3px);
152
152
  box-shadow: 0 0 10px var(--_);
153
153
  }
154
- }
154
+ .card-row{
155
+ display: flex;
156
+ flex-direction: row;
157
+ gap: 10px;
158
+ }
159
+ .card-col{
160
+ display: flex;
161
+ flex-direction: column;
162
+ gap: 10px;
163
+ }
164
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bl-css",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "black - blueviolet lightweight CSS framework",
5
5
  "main": "bl.css",
6
6
  "scripts": {