bl-css 0.8.0 → 0.9.0
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 +7 -5
- package/bl.css +15 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
# bl CSS
|
|
2
2
|
A *lightweight*, **blueviolet**, ***small*** CSS framework!
|
|
3
|
-
# 0.
|
|
4
|
-
|
|
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
|
|
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
|
|
8
9
|
:root{
|
|
9
|
-
--_: rgb(
|
|
10
|
-
--_4: rgba(
|
|
11
|
-
--_6: rgba(
|
|
10
|
+
--_: rgb(/* Your accent's RGB here */)
|
|
11
|
+
--_4: rgba(/* Your RGB */, 0.4)
|
|
12
|
+
--_6: rgba(/* Your RGB */, 0.6)
|
|
12
13
|
}
|
|
13
14
|
```
|
|
14
15
|
|
|
15
16
|
Have a Nice day Using it **:D**
|
|
17
|
+
Forever Free **:D**
|
package/bl.css
CHANGED
|
@@ -136,3 +136,18 @@ body{
|
|
|
136
136
|
color: var(--_);
|
|
137
137
|
transition: 0.1s ease;
|
|
138
138
|
}
|
|
139
|
+
.card{
|
|
140
|
+
display: flex;
|
|
141
|
+
flex-direction: column;
|
|
142
|
+
width: fit-content;
|
|
143
|
+
text-align: center;
|
|
144
|
+
padding: 10px;
|
|
145
|
+
box-shadow: 0 0 5px var(--_);
|
|
146
|
+
background-color: black;
|
|
147
|
+
border-radius: 5px;
|
|
148
|
+
transition: 0.4s ease;
|
|
149
|
+
}
|
|
150
|
+
.card:hover{
|
|
151
|
+
transform: translateY(-3px);
|
|
152
|
+
box-shadow: 0 0 10px var(--_);
|
|
153
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bl-css",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "black - blueviolet lightweight CSS framework",
|
|
5
5
|
"main": "bl.css",
|
|
6
6
|
"scripts": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"./help": "./README.md",
|
|
18
18
|
"./style": "./bl.css"
|
|
19
19
|
},
|
|
20
|
-
"keywords": ["css", "framework", "
|
|
20
|
+
"keywords": ["css", "framework", "dark", "blueviolet", "lightweight", "simple"],
|
|
21
21
|
"author": "__fg_xd",
|
|
22
22
|
"license": "MIT"
|
|
23
23
|
}
|