27 lines
524 B
CSS
27 lines
524 B
CSS
|
/*
|
||
|
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 {
|
||
|
--background-color: #dde83d;
|
||
|
--text-color: #000000;
|
||
|
--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;
|
||
|
}
|