static-hoster/dev/docker/images/production/html/style.css

61 lines
951 B
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;
}
#gopherImg {
max-height: 60%;
}
.bottomBox {
grid-area: bottom;
background-color: #08667e;
}