website/static/stylesheet.css

102 lines
1.3 KiB
CSS

/*
* #000000 - Black
* #FFC857 - Yellow
* #E9724C - Orange
* #C5283D - Red
* #255F85 - Blue
*/
html {
height: 100%;
display: flex;
}
body {
background-color: #F2F2FF;
display: flex;
margin: 1em;
width: 100%;
font-family: "Noto Sans Mono", "Monaco", serif;
flex-direction: column;
}
header {
display: flex;
justify-content: space-between;
margin: 1rem;
}
header h1 {
font-family: "Noto Serif Display", "American Typewriter", serif;
font-weight: normal;
text-align: center;
display: block;
margin: 0;
}
header nav {
display: flex;
align-items: center;
}
nav a {
margin: 1rem;
font-size: 1.2rem;
text-decoration: none;
color: black;
padding: 1rem;
}
.button {
background-color: #17466E;
color: #F2F2FF;
border-radius: 20px;
}
main {
height: 100%;
display: flex;
align-items: center;
justify-content: space-evenly;
flex-wrap: wrap-reverse;
margin-bottom: 3rem;
}
main figure {
max-width: 40%;
display: block;
font-size: 1.5rem;
margin: 0;
}
main figure figcaption {
text-align: right;
}
main span {
text-align: right;
font-size: 3rem;
}
mark {
background-color: #EDAF1F;
position: relative;
}
@media only screen and (max-width: 600px) {
main {
margin-bottom: 0;
}
header {
flex-direction: column;
align-items: center;
}
main figure {
max-width: 100%;
}
}