frontpage/root.css

137 lines
2.1 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);
*/
font-family: EdgeOfTheGalaxy;
font-weight: normal;
src: url(ZtMotaRegular-jEg39.ttf);
}
body {
font-family: EdgeOfTheGalaxy;
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;
}
#jsOutput {
font-family: monospace;
width: 95%;
text-align: left;
margin-left: auto;
margin-right: auto;
border-style: inset;
}
nav {
background-color: #333333;
border-style: inset;
border-color: #000000;
padding: 0 0 0 0;
margin: 0 0 0 0;
}
.aboutme {
background-image: linear-gradient(to left, #553333, #000000);
margin:10px 0 10px 10px;
float: right;
}
.aboutme h2 {
text-align: center;
width: 100%;
display: inline-block;
}
.navborder {
border-style: inset;
}
.button {
background-color: inherit;
color: white;
text-decoration: none;
border-style: outset;
border-width: 1px;
cursor: pointer;
border-radius: 2%;
padding: 4px;
}
.button:hover {
border-style: inset;
}
h1 {
/* background-color: #444444; */
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;
}
}
/* Dropdown menu */
.dropdown {
position: relative;
display: inline-block;
border-radius: 2%;
margin: 0 auto;
}
.dropdown-content {
position: absolute;
display: none;
padding: 10px;
background-color: rgba(0,0,0,0.6);
margin: auto;
text-align:center;
left: 50%;
transform: translateX(-50%);
}
.dropdown:hover .dropdown-content {
display: grid;
}
.dropdownButton {
white-space: nowrap;
}