Compare commits

...

3 Commits

Author SHA1 Message Date
118c8daf2d LICENSE: Relicensed to NSC License 2026-03-04 13:41:10 -05:00
7358cfaa48 Change red to darkred
Signed-off-by: psyke <psyke@noreply.git.sekaineo.club>
2026-02-22 09:06:37 -05:00
0723163826 Add fonts & CSS Variables 2026-02-22 10:40:46 +01:00
4 changed files with 40 additions and 5 deletions

21
LICENSE
View File

@ -1,5 +1,20 @@
Copyright (C) 2026 by Neo-Sekai Club
Copyright (c) 2026 Neo-Sekai Club <sekaineo.club>
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
Permission to use, copy, modify, and distribute this software for any
purpose with or without a fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies, provided that the
following conditions are met:
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1. Effective January 1, 2027, this software is unauthorized by
the State of California for usage by entities and residents
of California due to CA AB1043¹.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
¹CA AB1043 references: https://legiscan.com/CA/text/AB1043/id/3269704

BIN
assets/fonts/dosvga.ttf Normal file

Binary file not shown.

BIN
assets/fonts/unifont.otf Normal file

Binary file not shown.

View File

@ -1,3 +1,20 @@
@font-face
{
font-family: 'dos';
src: url('fonts/dosvga.ttf');
}
@font-face
{
font-family: 'unifont';
src: url('fonts/unifont.otf');
}
:root
{
--font-header: 'unifont';
--font-body: 'dos';
}
body
{
margin: 0;
@ -11,7 +28,7 @@ html
.navbar ul
{
background-color: cyan;
background-color: darkred;
display: flex;
list-style-type: none;
justify-content: center;
@ -31,11 +48,13 @@ html
.navbar ul li a
{
color: black;
color: white;
display: block;
padding: 14px 16px;
text-align: center;
text-decoration: none;
font-size: 1.5em;
font-family: var(--font-header);
}
.navbar ul li a:hover
@ -47,6 +66,7 @@ html
{
border: 2px solid blue;
color: white;
font-family: var(--font-body);
justify-content: center;
margin-bottom: 5%;
margin-left: 25%;