static-hoster/src/static/style.css

80 lines
1.2 KiB
CSS

@font-face {
font-family: 'Open Sans';
src: url(OpenSans-ExtraBold.ttf);
font-weight: 900;
}
@font-face {
font-family: 'Open Sans';
src: url(OpenSans-Regular.ttf);
font-weight: 400;
}
* {
margin: 0;
padding: 0;
}
html {
font-family: 'Open Sans', sans-serif;
}
body {
height: 100vh;
width: 100vw;
display: grid;
grid-template-rows: 60vh 40vh;
grid-template-columns: 100vw;
grid-template-areas:
"top"
"bottom";
}
.topBox {
grid-area: top;
display: flex;
color: #FFFFFF;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-color: #5abad3;
}
.topText>.heading {
font-weight: 900;
display: flex;
justify-content: center;
align-items: center;
}
.topText>.heading>img {
width: 6rem;
}
.subtext {
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
}
#siteURL:hover {
text-decoration: underline;
}
#siteURL {
background-color: #222222;
padding: .5rem;
margin: .5rem;
border-radius: 5px;
color: #a1a1a1;
}
#gopherImg {
max-height: 60%;
}
.bottomBox {
grid-area: bottom;
background-color: #08667e;
}