frontpage/root.css

81 lines
1.2 KiB
CSS
Raw Normal View History

2023-03-06 13:35:09 -06:00
@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(Circles.png);
text-align: center;
color: #FFFFFF;
}
2023-03-06 16:28:32 -06:00
#wrapper {
width: 1024px;
margin-left: auto;
margin-right: auto;
text-align: center;
2023-03-06 14:36:22 -06:00
background-color: #000000;
2023-03-06 14:15:57 -06:00
/* width: 90%; */
border-style: groove;
border-color: #000000;
2023-03-06 16:28:32 -06:00
2023-03-06 13:35:09 -06:00
}
2023-03-06 16:28:32 -06:00
2023-03-06 14:36:22 -06:00
nav {
background-color: #333333;
border-style: inset;
border-color: #000000;
padding: none;
}
2023-03-06 16:28:32 -06:00
.button {
color: white;
text-decoration: none;
border-style: outset;
cursor: pointer;
}
.button a {
2023-03-06 15:27:18 -06:00
color: #FFFFFF;
text-decoration: none;
border-style: outset;
cursor: pointer;
}
2023-03-06 16:28:32 -06:00
.button a:hover {
2023-03-06 15:27:18 -06:00
border-style: inset;
}
2023-03-06 14:36:22 -06:00
h1 {
2023-03-06 16:28:32 -06:00
/* background-color: #444444; */
2023-03-06 14:36:22 -06:00
padding: auto;
padding-left: 40px;
padding-right: 40px;
padding-top: 20px;
padding-bottom: 20px;
}
2023-03-06 16:28:32 -06:00
ul {
list-style-type: none; /* Remove bullets */
padding: 0; /* Remove padding */
margin: 0; /* Remove margins */
}
2023-03-06 15:27:18 -06:00
2023-03-06 16:28:32 -06:00
@media only screen and (max-width: 1000px) {
#wrapper {
width: 800px;
}
}