frontpage/root.css

83 lines
1.3 KiB
CSS

@font-face {
font-family: Comic Mono;
font-weight: normal;
src: url(https://cdn.jsdelivr.net/npm/comic-mono@0.0.1/ComicMono.ttf);
}
body {
font-family: Comic Mono;
background-attachment: fixed;
/* text-decoration: overline; */
/* text-transform: uppercase; */
/* background-color: #FFAAAA; */
background-image: url("space.gif");
/* url(Circles.png); */
text-align: center;
color: #FFFFFF;
}
#wrapper {
opacity: 0.9;
width: 1024px;
margin-left: auto;
margin-right: auto;
text-align: center;
background-color: #000000;
/* width: 90%; */
border-style: groove;
border-color: #000000;
}
nav {
background-color: #333333;
border-style: inset;
border-color: #000000;
padding: 0 0 0 0;
margin: 0 0 0 0;
}
.navborder {
border-style: inset;
}
.button {
color: white;
text-decoration: none;
border-style: outset;
cursor: pointer;
border-radius: 5%;
}
.button:hover {
border-style: inset;
}
h1 {
/* background-color: #444444; */
padding: auto;
padding-left: 40px;
padding-right: 40px;
padding-top: 20px;
padding-bottom: 20px;
}
ul {
list-style-type: none; /* Remove bullets */
padding: 0; /* Remove padding */
margin: 0; /* Remove margins */
}
@media only screen and (max-width: 1000px) {
#wrapper {
width: 800px;
}
}