txt.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 +9 -0
  2. package/package.json +19 -0
  3. package/reset/txt.css +21 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # txt.css
2
+ Prank your friends by making a website that looks purely like a raw text file, but can interact!!
3
+
4
+ This is currently in progress and won't finish until after Ramadan as I am busy...
5
+
6
+ # Tips!
7
+ Write your html in a `<pre>` tag so you keep the whitespace! It will look even more like a raw file :P
8
+
9
+ `from the creator of bl-css!`
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "txt.css",
3
+ "version": "0.5.0",
4
+ "description": "Make your html look like a raw text file!",
5
+ "main": "reset/txt.css",
6
+ "style": "reset/txt.css",
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1"
9
+ },
10
+ "exports":{
11
+ ".": "reset/txt.css",
12
+ "./style": "reset/txt.css",
13
+ "./info": "README.md",
14
+ "./about": "README.md"
15
+ },
16
+ "keywords": ["prank","css","raw-text-css","funny"],
17
+ "author": "__fg_xd",
18
+ "license": "LGPL-2.1-only"
19
+ }
package/reset/txt.css ADDED
@@ -0,0 +1,21 @@
1
+ /* This is the main file, I just put in the reset folder, don't be confused */
2
+ body{
3
+ color: white;
4
+ background-color: black;
5
+ cursor: default;
6
+ font-family: monospace;
7
+ padding: 0;
8
+ margin: 0;
9
+ font-size: 1em;
10
+ }
11
+ .reset-all{
12
+ color: inherit;
13
+ background: inherit;
14
+ cursor: text;
15
+ font: inherit;
16
+ text-decoration: none;
17
+ border: none;
18
+ white-space: pre-wrap;
19
+ word-wrap: break-word;
20
+ }
21
+ /* This is beta btw */