Update README and add font locally
This commit is contained in:
parent
285020dfe9
commit
0cff0b23b3
11
README.md
11
README.md
@ -1,7 +1,8 @@
|
||||
# The BotSym CSS
|
||||
|
||||
The BotSym is a network existing in a universe created by [neon][neon] and [teascade][teascade].
|
||||
It's purpose is to act as a mirror between that universe and ours, and as the "internet" of the BotSym universe.
|
||||
BotSym css created by [teascade][teascade] and was originally created for a specific game project
|
||||
by [teascade][teascade] and [neon][neon] that in the end never saw the light of day. It is a small CSS library
|
||||
that closely resembles a retro terminal-ey look.
|
||||
|
||||
- [How to use it?](#how-to-use-it)
|
||||
- [`Navbars`](#navbars)
|
||||
@ -28,9 +29,9 @@ What isn't covered by these subtitles may work by using the elements normally. S
|
||||
- `hr`-tag (horizontal line)
|
||||
- `p`-tag (paragraph)
|
||||
|
||||
**Do note:** It is **crucial** that you do not use any `h`-tags like `h1` as they do not conform to the text-based aesthetic of the universe.
|
||||
**Do note:** It is **crucial** that you do not use any `h`-tags like `h1` as they do not conform to the text-based aesthetic.
|
||||
|
||||
If you find this CSS lacking you may edit it or create your own, but if you wish to retain in-universe, it is desirable that you keep our main philosophies as a focus:
|
||||
If you find this CSS lacking you may edit it or create your own, but if you wish to retain a similar look, it is desirable that you keep our main philosophies as a focus:
|
||||
- Priorize text-alignment first.
|
||||
- Could I do this in ncurses in a real terminal? If not, don't do it.
|
||||
- Preferably stay in the color-scheme set by the current CSS
|
||||
@ -143,7 +144,7 @@ This example also uses [boxes](#boxes) and [padding and no-select -helper-class]
|
||||
## License
|
||||
The BotSym CSS repository is licensed under the terms of [GNU GPLv3][gplv3] license. See more at [LICENSE](LICENSE) or [tl;dr legal][tldrgplv3]
|
||||
|
||||
[teascade]: https://teasca.de/
|
||||
[teascade]: https://teascade.net/
|
||||
[neon]: https://neon.moe/
|
||||
[gplv3]: https://gnu.org/licenses/gpl-3.0.html
|
||||
[tldrgplv3]: https://tldrlegal.com/license/gnu-general-public-license-v3-(gpl-3)
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"version": 3,
|
||||
"mappings": "AACC,OAAY;EACV,OAAO,EAAE,IAAI;;AAEf,+BAAwC;EACtC,OAAO,EAAE,KAAK;;AAJhB,OAAY;EACV,OAAO,EAAE,IAAI;;AAEf,+BAAwC;EACtC,OAAO,EAAE,KAAK;;AAJhB,OAAY;EACV,OAAO,EAAE,IAAI;;AAEf,+BAAwC;EACtC,OAAO,EAAE,KAAK",
|
||||
"sources": ["custom.scss"],
|
||||
"sources": ["../scss/custom.scss"],
|
||||
"names": [],
|
||||
"file": "custom.css"
|
||||
}
|
@ -1,6 +1,9 @@
|
||||
@charset "UTF-8";
|
||||
@font-face {
|
||||
font-family: "Iosevka Slab Regular";
|
||||
src: url("../fonts/iosevka-slab-regular.woff2") format("woff2"); }
|
||||
:root {
|
||||
font-family: "Iosevka Slab", "Iosevka", "Consolas", "monospace";
|
||||
font-family: "Iosevka Slab Regular", "monospace";
|
||||
background-color: black;
|
||||
color: #c9c9c9;
|
||||
border-color: #c9c9c9;
|
7
css/style.css.map
Normal file
7
css/style.css.map
Normal file
File diff suppressed because one or more lines are too long
BIN
fonts/iosevka-slab-regular.woff2
Normal file
BIN
fonts/iosevka-slab-regular.woff2
Normal file
Binary file not shown.
@ -3,8 +3,8 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS example</title>
|
||||
<link type="text/css" rel="stylesheet" href="style.css" />
|
||||
<link type="text/css" rel="stylesheet" href="custom.css" />
|
||||
<link type="text/css" rel="stylesheet" href="css/style.css" />
|
||||
<link type="text/css" rel="stylesheet" href="css/custom.css" />
|
||||
</head>
|
||||
<body>
|
||||
<input type="radio" id="radio-page-1" name="pages">
|
||||
@ -66,9 +66,9 @@
|
||||
<div class="box inline white width-50">
|
||||
<p><b>Links!</b></p>
|
||||
<li class="button-list">
|
||||
<ul><a href="https://teasca.de/">Teasca.de</a></ul>
|
||||
<ul><a href="https://teascade.net/">Teasca.de</a></ul>
|
||||
<ul><a href="https://github.com/teascade">GitHub</a></ul>
|
||||
<ul><a href="https://social.targaryen.house/@teascade">Mastodon</a></ul>
|
||||
<ul><a href="https://cybergay.space/@teascade">Mastodon</a></ul>
|
||||
</li>
|
||||
<hr>
|
||||
<p>Stuff under the hr!</p>
|
||||
|
@ -40,8 +40,13 @@ $box-double-border: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Iosevka Slab Regular";
|
||||
src: url("../fonts/iosevka-slab-regular.woff2") format("woff2");
|
||||
}
|
||||
|
||||
:root { // Styles applying to everyting
|
||||
font-family: "Iosevka Slab", "Iosevka", "Consolas", "monospace";
|
||||
font-family: "Iosevka Slab Regular", "monospace";
|
||||
|
||||
@include whiteOnBlack;
|
||||
font-weight: 400;
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user