website/static/stylesheet.css

90 lines
1.2 KiB
CSS
Raw Normal View History

2022-03-28 15:24:48 -04:00
/*
* #000000 - Black
* #FFC857 - Yellow
* #E9724C - Orange
* #C5283D - Red
* #255F85 - Blue
*/
html {
height: 100%;
2022-03-29 18:38:10 -04:00
display: flex;
2022-03-28 15:24:48 -04:00
}
body {
2022-03-29 18:38:10 -04:00
background-color: #F2F2FF;
2022-03-28 15:24:48 -04:00
display: flex;
2022-03-29 18:38:10 -04:00
margin: 1em;
width: 100%;
border: 1px solid black;
font-family: "Noto Sans Mono", "Monaco", serif;
flex-direction: column;
2022-03-28 15:24:48 -04:00
}
2022-03-29 18:38:10 -04:00
body header {
2022-03-28 15:24:48 -04:00
display: flex;
2022-03-29 18:38:10 -04:00
justify-content: space-between;
2022-03-28 15:24:48 -04:00
}
2022-03-29 18:38:10 -04:00
header h1 {
font-family: "Noto Serif Display", "American Typewriter", serif;
font-weight: normal;
2022-03-28 15:24:48 -04:00
text-align: center;
2022-03-29 18:38:10 -04:00
display: block;
margin: 2rem;
2022-03-28 15:24:48 -04:00
}
2022-03-29 18:38:10 -04:00
header nav {
display: flex;
align-items: center;
margin 2rem;
margin-right: 4rem;
2022-03-28 15:24:48 -04:00
}
2022-03-29 18:38:10 -04:00
nav a {
margin: 1rem;
2022-03-28 15:24:48 -04:00
font-size: 1.2rem;
2022-03-29 18:38:10 -04:00
text-decoration: none;
color: black;
padding: 1rem;
2022-03-28 15:24:48 -04:00
}
2022-03-29 18:38:10 -04:00
.button {
background-color: #17466E;
color: #F2F2FF;
border-radius: 20px;
2022-03-28 15:24:48 -04:00
}
main {
height: 100%;
display: flex;
2022-03-29 18:38:10 -04:00
align-items: center;
justify-content: space-evenly;
2022-03-28 15:24:48 -04:00
}
2022-03-29 18:38:10 -04:00
main figure {
width: 40%;
margin: 2rem;
2022-03-28 15:24:48 -04:00
display: block;
position: relative;
2022-03-29 18:38:10 -04:00
font-size: 1.5rem;
right: 4rem;
bottom: 1rem;
2022-03-28 15:24:48 -04:00
}
2022-03-29 18:38:10 -04:00
main figure figcaption {
text-align: right;
2022-03-28 15:24:48 -04:00
}
2022-03-29 18:38:10 -04:00
main span {
2022-03-28 15:24:48 -04:00
text-align: right;
2022-03-29 18:38:10 -04:00
font-size: 3rem;
position: relative;
bottom: 5rem;
2022-03-28 15:24:48 -04:00
}
2022-03-29 18:38:10 -04:00
mark {
background-color: #EDAF1F;
position: relative;
2022-03-28 15:24:48 -04:00
}