bl-css 0.7.1 → 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 +2 -2
- package/bl.css +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# bl CSS
|
|
2
2
|
A *lightweight*, **blueviolet**, ***small*** CSS framework!
|
|
3
|
-
# 0.7.
|
|
4
|
-
|
|
3
|
+
# 0.7.2 - Release notes(by Dev)
|
|
4
|
+
I added ```clearp``` class!!! its opposite to alertp, and its in BLUEVIOLET :D!!
|
|
5
5
|
|
|
6
6
|
Have a Nice day Using it **:D**
|
package/bl.css
CHANGED
|
@@ -56,6 +56,23 @@ body{
|
|
|
56
56
|
.shadedp:hover{
|
|
57
57
|
border: 1px solid rgba(128,128,128,1);
|
|
58
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
|
+
}
|
|
59
76
|
.alertp{
|
|
60
77
|
display: table;
|
|
61
78
|
font-family: "Cause";
|