bl-css 0.7.0 → 0.7.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 +4 -10
- package/bl.css +21 -0
- 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
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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.2 - Release notes(by Dev)
|
|
4
|
+
I added ```clearp``` class!!! its opposite to alertp, and its in BLUEVIOLET :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;
|
|
@@ -54,6 +56,23 @@ body{
|
|
|
54
56
|
.shadedp:hover{
|
|
55
57
|
border: 1px solid rgba(128,128,128,1);
|
|
56
58
|
}
|
|
59
|
+
.clearp {
|
|
60
|
+
display: table;
|
|
61
|
+
font-family: "Cause";
|
|
62
|
+
color: white;
|
|
63
|
+
padding: 3px;
|
|
64
|
+
background-color: rgba(138, 43, 226,0.4);
|
|
65
|
+
border-left: rgba(138, 43, 226,1) 1px solid;
|
|
66
|
+
border-right: transparent 1px solid;
|
|
67
|
+
border-bottom: transparent 1px solid;
|
|
68
|
+
border-top: transparent 1px solid;
|
|
69
|
+
border-radius: 5px;
|
|
70
|
+
transition: 0.4s ease;
|
|
71
|
+
}
|
|
72
|
+
.clearp:hover{
|
|
73
|
+
border: rgba(138, 43, 226,1) 1px solid;
|
|
74
|
+
background-color: rgba(138,43,226,0.6);
|
|
75
|
+
}
|
|
57
76
|
.alertp{
|
|
58
77
|
display: table;
|
|
59
78
|
font-family: "Cause";
|
|
@@ -96,6 +115,7 @@ body{
|
|
|
96
115
|
}
|
|
97
116
|
.linkbtn{
|
|
98
117
|
display: table;
|
|
118
|
+
color: white;
|
|
99
119
|
font-family: "Cause";
|
|
100
120
|
padding: 5px;
|
|
101
121
|
border: rgba(128,128,128,0.6) 2px solid;
|
|
@@ -105,6 +125,7 @@ body{
|
|
|
105
125
|
transition: 0.4s ease;
|
|
106
126
|
}
|
|
107
127
|
.linkbtn:hover{
|
|
128
|
+
color: white;
|
|
108
129
|
transform: translateY(2px);
|
|
109
130
|
border: rgba(138, 43, 226,0.6) 2px solid;
|
|
110
131
|
background-color: transparent;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bl-css",
|
|
3
|
-
"version": "0.7.
|
|
4
|
-
"description": "black - blueviolet
|
|
3
|
+
"version": "0.7.2",
|
|
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
|
+
}
|