@raveeshn/superblocknpm 1.0.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 +40 -0
- package/Super Blocky.ttf +0 -0
- package/index.css +7 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# @raveesh-test/superblocknpm
|
|
2
|
+
|
|
3
|
+
Super Blocky font package with CSS.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @raveesh-test/superblocknpm
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
Import the CSS file in your project:
|
|
14
|
+
|
|
15
|
+
```javascript
|
|
16
|
+
import '@raveesh-test/superblocknpm';
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Or import directly in your CSS:
|
|
20
|
+
|
|
21
|
+
```css
|
|
22
|
+
@import '@raveesh-test/superblocknpm';
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Then use the font in your styles:
|
|
26
|
+
|
|
27
|
+
```css
|
|
28
|
+
.my-element {
|
|
29
|
+
font-family: 'Super Blocky', sans-serif;
|
|
30
|
+
}
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Files Included
|
|
34
|
+
|
|
35
|
+
- `index.css` - CSS file with @font-face declaration
|
|
36
|
+
- `Super Blocky.ttf` - TrueType font file
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
ISC
|
package/Super Blocky.ttf
ADDED
|
Binary file
|
package/index.css
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@raveeshn/superblocknpm",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Super Blocky font package with CSS",
|
|
5
|
+
"main": "index.css",
|
|
6
|
+
"files": [
|
|
7
|
+
"index.css",
|
|
8
|
+
"Super Blocky.ttf"
|
|
9
|
+
],
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./index.css",
|
|
12
|
+
"./font": "./Super Blocky.ttf",
|
|
13
|
+
"./Super Blocky.ttf": "./Super Blocky.ttf"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"font",
|
|
17
|
+
"super-blocky",
|
|
18
|
+
"css"
|
|
19
|
+
],
|
|
20
|
+
"author": "raveesh-test",
|
|
21
|
+
"license": "ISC",
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"access": "public"
|
|
24
|
+
}
|
|
25
|
+
}
|