95 lines
1.4 KiB
CSS
95 lines
1.4 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;
|
|
}
|
|
|
|
.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 {
|
|
color: white;
|
|
text-decoration: none;
|
|
border-style: outset;
|
|
cursor: pointer;
|
|
border-radius: 5%;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|