bl-css 0.5.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.
Files changed (3) hide show
  1. package/README.md +12 -0
  2. package/bl.css +94 -0
  3. package/package.json +18 -0
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # bl CSS
2
+ A *lightweight*, **blueviolet**, ***small*** CSS framework!
3
+ [!IMPORTANT]
4
+ Add this to your HTML!!!
5
+ ```html
6
+ <link rel="preconnect" href="https://fonts.googleapis.com">
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**
package/bl.css ADDED
@@ -0,0 +1,94 @@
1
+ body{
2
+ background-color: black;
3
+ color: white;
4
+ }
5
+ .purpl{
6
+ font-family: "Cause";
7
+ background: linear-gradient(
8
+ to bottom,
9
+ rgba(138, 43, 226, 0.4),
10
+ rgba(138,43,226,1),
11
+ rgba(138,43,226,0.4)
12
+ );
13
+ background-clip: text;
14
+ -webkit-background-clip: text;
15
+ color: transparent;
16
+ }
17
+ .h1{
18
+ font-family: "Lilita One";
19
+ display: table;
20
+ padding: 10px;
21
+ font-size: 2rem;
22
+ border-bottom: 0.5px solid;
23
+ border-bottom-color: rgba(255,255,255,0.3);
24
+ transition: 0.4s ease;
25
+ }
26
+ .h1:hover{
27
+ color: transparent;
28
+ background:linear-gradient(
29
+ to bottom,
30
+ rgba(138, 43, 226, 0.4),
31
+ rgba(138,43,226,1),
32
+ rgba(138,43,226,0.4)
33
+ );
34
+ background-clip: text;
35
+ -webkit-background-clip: text;
36
+ border-bottom-color: blueviolet;
37
+ }
38
+ .normalp{
39
+ display: table;
40
+ font-family: "Cause";
41
+ }
42
+ .shadedp{
43
+ display: table;
44
+ font-family: "Cause";
45
+ padding: 3px;
46
+ background-color: rgba(128,128,128,0.4);
47
+ border-left: rgba(128,128,128,1) 1px solid;
48
+ border-right: transparent 1px solid;
49
+ border-bottom: transparent 1px solid;
50
+ border-top: transparent 1px solid;
51
+ transition: 0.4s ease;
52
+ border-radius: 5px;
53
+ }
54
+ .shadedp:hover{
55
+ border: 1px solid rgba(128,128,128,1);
56
+ }
57
+ .alertp{
58
+ display: table;
59
+ font-family: "Cause";
60
+ padding: 3px;
61
+ background-color: rgba(255,0,0,0.4);
62
+ border-left: rgba(255,0,0,1) 1px solid;
63
+ border-right: transparent 1px solid;
64
+ border-bottom: transparent 1px solid;
65
+ border-top: transparent 1px solid;
66
+ border-radius: 5px;
67
+ transition: 0.4s ease;
68
+ }
69
+ .alertp:hover{
70
+ border: rgba(255,0,0,1) 1px solid;
71
+ }
72
+ .importantp{
73
+ display: table;
74
+ font-family: "Cause";
75
+ background-color: white;
76
+ color: black;
77
+ transition: 0.4s ease;
78
+ }
79
+ .importantp:hover{
80
+ background-color: black;
81
+ color: white;
82
+ }
83
+ .link{
84
+ display: table;
85
+ font-family: "Cause";
86
+ text-decoration: underline;
87
+ color: white;
88
+ text-decoration-color: white;
89
+ transition: 0.1s ease;
90
+ }
91
+ .link:hover{
92
+ color: blueviolet;
93
+ text-decoration-color: blueviolet;
94
+ }
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "bl-css",
3
+ "version": "0.5.0",
4
+ "description": "black - blueviolet small CSS framework",
5
+ "main": "bl.css",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "files": ["bl.css", "README.md"],
10
+ "exports": {
11
+ ".": "./bl.css",
12
+ "./info": "./README.md",
13
+ "./help": "./README.md"
14
+ },
15
+ "keywords": [],
16
+ "author": "",
17
+ "license": "MIT"
18
+ }