General cleanup and refactor.

This commit is contained in:
2021-08-18 03:06:03 +01:00
parent 637577d031
commit ecd22955cb
62 changed files with 19281 additions and 10643 deletions

View File

@@ -31,60 +31,60 @@
// ****************************************************************************/
/* Sets the grayscale for Bootstrap */
$white: #AAAAAA;
$darkgray: #555555;
$gray-100: #AAAAAA;
$gray-200: #AAAAAA;
$gray-300: #AAAAAA;
$gray-400: #AAAAAA;
$gray-500: #555555;
$gray-600: #555555;
$gray-700: #555555;
$gray-800: #555555;
$gray-900: #555555;
$black: #000;
$white: #AAAAAA;
$darkgray: #555555;
$gray-100: #AAAAAA;
$gray-200: #AAAAAA;
$gray-300: #AAAAAA;
$gray-400: #AAAAAA;
$gray-500: #555555;
$gray-600: #555555;
$gray-700: #555555;
$gray-800: #555555;
$gray-900: #555555;
$black: #000;
/* Sets color palette, using EGA colors */
$blue: #0000AA;
$indigo: #AA55AA;
$purple: #AA00FF;
$pink: #FF55FF;
$red: #AA0000;
$orange: #FF5555;
$yellow: #FFFF55;
$green: #00AA00;
$teal: #55FFFF;
$cyan: #00AAAA;
$brown: #AA5500;
$brightwhite: #FFFFFF;
$blue: #0000AA;
$indigo: #AA55AA;
$purple: #AA00FF;
$pink: #FF55FF;
$red: #AA0000;
$orange: #FF5555;
$yellow: #FFFF55;
$green: #00AA00;
$teal: #55FFFF;
$cyan: #00AAAA;
$brown: #AA5500;
$brightwhite: #FFFFFF;
/* Bootstrap color aliases */
$primary: $blue;
$secondary: $gray-600;
$success: $green;
$info: $cyan;
$warning: $yellow;
$danger: $red;
$light: $gray-100;
$dark: $gray-800;
$primary: $blue;
$secondary: $gray-600;
$success: $green;
$info: $cyan;
$warning: $yellow;
$danger: $red;
$light: $gray-100;
$dark: $gray-800;
/* Colors for <body> */
$body-bg: $black;
$body-color: $white;
$body-bg: $black;
$body-color: $white;
/* Colors for <a> */
$link-color: $teal;
$link-color: $teal;
$link-hover-color: $yellow;
/* Colors for cards */
$card-border-color: rgba($darkgray, .125);
$card-cap-bg: rgba($darkgray, .03);
$card-cap-color: inherit;
$card-bg: $blue;
$card-border-color: rgba($darkgray, .125);
$card-cap-bg: rgba($darkgray, .03);
$card-cap-color: inherit;
$card-bg: $blue;
/* Colors for tables */
$table-dark-bg: $cyan;
$table-dark-accent-bg: rgba($white, .05) !default;
$table-dark-hover-bg: rgba($white, .075) !default;
$table-dark-border-color: lighten($yellow, 7.5%) !default;
$table-dark-color: $yellow !default;
$table-dark-bg: $cyan;
$table-dark-accent-bg: rgba($white, .05) !default;
$table-dark-hover-bg: rgba($white, .075) !default;
$table-dark-border-color: lighten($yellow, 7.5%) !default;
$table-dark-color: $yellow !default;

View File

@@ -31,21 +31,20 @@
// ****************************************************************************/
/* Sets font to VGA square */
@font-face
{
font-family: 'VGAsquarePx';
src: url(../../fonts/vga_squarepx.eot);
src: url(../../fonts/vga_squarepx.eot?#iefix) format('embedded-opentype'),
url(../../fonts/vga_squarepx.woff2) format('woff2'),
url(../../fonts/vga_squarepx.woff) format('woff'),
url(../../fonts/vga_squarepx.ttf) format('truetype');
font-weight: normal;
font-style: normal;
@font-face {
font-family: 'VGAsquarePx';
src: url(../../fonts/vga_squarepx.eot);
src: url(../../fonts/vga_squarepx.eot?#iefix) format('embedded-opentype'),
url(../../fonts/vga_squarepx.woff2) format('woff2'),
url(../../fonts/vga_squarepx.woff) format('woff'),
url(../../fonts/vga_squarepx.ttf) format('truetype');
font-weight: normal;
font-style: normal;
}
$font-family-sans-serif: 'VGAsquarePx';
$font-family-monospace: 'VGAsquarePx';
$font-family-base: 'VGAsquarePx';
$font-size-base: 1.75rem;
$font-family-sans-serif: 'VGAsquarePx';
$font-family-monospace: 'VGAsquarePx';
$font-family-base: 'VGAsquarePx';
$font-size-base: 1.75rem;
$line-height-base: 1;
$line-height-base: 1;

View File

@@ -33,19 +33,17 @@
@import "_colors";
/* Sets the style for emphasis/italics */
em, i
{
color: $green;
font-style: normal;
em, i {
color: $green;
font-style: normal;
}
/* Headings and bold text are bright white */
h1, h2, h3, h4,
b, strong
{
color: $brightwhite;
font-size: 1em;
font-style: normal;
font-weight: normal;
margin: 0;
b, strong {
color: $brightwhite;
font-size: 1em;
font-style: normal;
font-weight: normal;
margin: 0;
}

File diff suppressed because it is too large Load Diff

View File

@@ -36,52 +36,46 @@
@import "../../../node_modules/bootstrap/scss/bootstrap";
footer
{
background-color: $brown;
color: $black;
footer {
background-color: $brown;
color: $black;
}
header
{
background-color: $teal;
color: $black;
text-align: center;
header {
background-color: $teal;
color: $black;
text-align: center;
}
header a
{
color: $pink;
header a {
color: $pink;
}
header a:hover
{
color: $orange;
text-decoration: none;
header a:hover {
color: $orange;
text-decoration: none;
}
footer a:hover
{
text-decoration: none;
footer a:hover {
text-decoration: none;
}
.table-centered
{
margin-left:auto;
margin-right:auto;
.table-centered {
margin-left: auto;
margin-right: auto;
}
.card-button{color:$yellow}
.table-dark-em
{
color: $brown;
font-style: normal;
.card-button {
color: $yellow
}
.table-dark-header
{
color: $brown;
font-style: normal;
text-align: center;
.table-dark-em {
color: $brown;
font-style: normal;
}
.table-dark-header {
color: $brown;
font-style: normal;
text-align: center;
}