-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- set up package - folder structure - basic readme
- Loading branch information
1 parent
e5b1584
commit c682723
Showing
7 changed files
with
327 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
.vs/* | ||
node_modules/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,37 @@ | ||
# xenoterminal | ||
# Xeno Terminal | ||
A CSS framework to style common sites in the theme of classic CRT/Sci fi terminals. | ||
|
||
# How To Use | ||
You can install via npm | ||
``` | ||
npm i @allanocelot/xenoterminal | ||
``` | ||
|
||
then import the Lib anywhere you'd like to use it. | ||
|
||
|
||
``` | ||
@import "@allanocelot/xenoterminal"; | ||
``` | ||
|
||
|
||
# Contributing | ||
Clone repo locally | ||
``` | ||
npm install | ||
``` | ||
|
||
run | ||
|
||
``` | ||
npm run build | ||
``` | ||
|
||
to compile src scss down to css in dist. Open a PR. | ||
|
||
|
||
|
||
# Notes | ||
This is just a super goofy hobby project. Please don't expect consistent updates as I'm much too busy with my actual dev work / life. Thanks! | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*{display:none}/*# sourceMappingURL=index.css.map */ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"name": "@allanocelot/xenoterminal", | ||
"version": "1.0.0", | ||
"description": "A simple collection of CSS that styles websites in the asthetic of CRT / Sci Fi computers", | ||
"main": "main.scss", | ||
"scripts": { | ||
"build": "sass src/main.scss dist/index.css --style=compressed" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "xenoterminal" | ||
}, | ||
"keywords": [ | ||
"css", | ||
"alien", | ||
"framework", | ||
"fun", | ||
"console", | ||
"simple", | ||
"clear", | ||
"minimal", | ||
"80s", | ||
"scifi" | ||
], | ||
"author": "Allan Ocelot", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"sass": "^1.77.8" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// build test | ||
* { | ||
display: none; | ||
} |