2023-10-17 15:15:41 +01:00
|
|
|
/*
|
|
|
|
Index.css
|
|
|
|
Description: This file is the stylesheet for the html that the
|
|
|
|
user will see if they do not have javascript enabled.
|
|
|
|
Author: Arlo Filley
|
|
|
|
*/
|
|
|
|
|
|
|
|
:root {
|
2024-03-23 15:56:37 +00:00
|
|
|
--background-color: #000000;
|
|
|
|
--text-color: yellow;
|
2023-10-17 15:15:41 +01:00
|
|
|
--font: Verdana, Geneva, Tahoma, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: var(--background-color);
|
|
|
|
position: absolute;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
noscript {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
font-family: var(--font);
|
|
|
|
color: var(--text-color);
|
|
|
|
font-size: large;
|
|
|
|
}
|