51 lines
663 B
CSS
51 lines
663 B
CSS
/* Neon Colour Variables */
|
|
:root {
|
|
--neon-green: #3DFF33;
|
|
--neon-purple: #F433FF;
|
|
--neon-yellow: #F3F315;
|
|
--neon-orange: #FF8300;
|
|
--neon-blue: #6699f6;
|
|
--neon-red: #FF0000;
|
|
}
|
|
|
|
|
|
html {
|
|
font-family: courier, monospace;
|
|
color: white;
|
|
text-align: justify;
|
|
padding: 50px;
|
|
}
|
|
|
|
body {
|
|
background-color: black;
|
|
}
|
|
|
|
|
|
a {
|
|
color: var(--neon-green);
|
|
text-decoration: none;
|
|
/* font-weight: bold; */
|
|
}
|
|
|
|
.site {
|
|
margin: 8px;
|
|
display: inline;
|
|
}
|
|
|
|
.state {
|
|
margin: 0px;
|
|
display: inline;
|
|
}
|
|
|
|
.title h1 {
|
|
text-align: left;
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.title h3 {
|
|
margin-top: 8px;
|
|
margin-left: 36px;
|
|
}
|