website/static/stylesheet.css

164 lines
2.1 KiB
CSS
Raw Normal View History

2022-03-28 15:24:48 -04:00
/*
2022-03-30 06:28:40 -04:00
* #F2F2FF - White
* #EDAF1F - Orange
* #17466E - Blue
2022-03-28 15:24:48 -04:00
*/
2022-03-30 08:22:10 -04:00
#html {
2022-03-28 15:24:48 -04:00
height: 100%;
2022-03-29 18:38:10 -04:00
display: flex;
2022-03-28 15:24:48 -04:00
}
2022-03-30 08:22:10 -04:00
#body {
2022-03-29 18:38:10 -04:00
background-color: #F2F2FF;
2022-03-30 06:28:40 -04:00
background-image: url("duck.png");
background-size: 50%;
background-repeat: no-repeat;
background-position: right bottom;
2022-03-28 15:24:48 -04:00
display: flex;
2022-03-30 06:28:40 -04:00
margin: 0;
2022-03-29 18:38:10 -04:00
width: 100%;
font-family: "Noto Sans Mono", "Monaco", serif;
flex-direction: column;
2022-03-28 15:24:48 -04:00
}
2022-03-30 08:22:10 -04:00
#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-30 06:28:40 -04:00
padding: 2rem;
2022-03-28 15:24:48 -04:00
}
2022-03-30 08:22:10 -04:00
#title {
2022-03-29 18:38:10 -04:00
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;
2022-03-30 05:32:25 -04:00
margin: 0;
2022-03-28 15:24:48 -04:00
}
2022-03-30 08:22:10 -04:00
#title a {
text-decoration: none;
color: black;
}
#links {
2022-03-29 18:38:10 -04:00
display: flex;
align-items: center;
2022-03-28 15:24:48 -04:00
}
2022-03-30 08:22:10 -04:00
#links a {
2022-03-29 18:38:10 -04:00
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-30 08:22:10 -04:00
#links .button {
2022-03-29 18:38:10 -04:00
background-color: #17466E;
color: #F2F2FF;
border-radius: 20px;
2022-03-30 15:54:35 -04:00
box-shadow: 2px 2px 0 black;
2022-03-28 15:24:48 -04:00
}
2022-03-30 07:14:42 -04:00
#page {
2022-03-28 15:24:48 -04:00
height: 100%;
display: flex;
2022-03-30 07:14:42 -04:00
margin: 1rem;
margin-bottom: 4rem;
}
#social {
width: 1.5em;
display: flex;
flex-direction: column;
justify-content: center;
}
#social a {
margin: .5em 0;
}
2022-03-30 08:22:10 -04:00
#social .icon {
2022-03-30 07:14:42 -04:00
width: 100%;
}
2022-03-30 08:22:10 -04:00
#main {
2022-03-30 07:14:42 -04:00
width: 100%;
display: flex;
2022-03-29 18:38:10 -04:00
align-items: center;
justify-content: space-evenly;
2022-03-30 05:32:25 -04:00
flex-wrap: wrap-reverse;
2022-03-28 15:24:48 -04:00
}
2022-03-30 08:22:10 -04:00
#quote {
2022-03-28 15:24:48 -04:00
display: block;
2022-03-29 18:38:10 -04:00
font-size: 1.5rem;
2022-03-30 05:32:25 -04:00
margin: 0;
2022-03-28 15:24:48 -04:00
}
2022-03-30 08:22:10 -04:00
#quote figcaption {
2022-03-29 18:38:10 -04:00
text-align: right;
2022-03-28 15:24:48 -04:00
}
2022-03-30 08:22:10 -04:00
#slogan {
2022-03-28 15:24:48 -04:00
text-align: right;
2022-03-29 18:38:10 -04:00
font-size: 3rem;
2022-03-28 15:24:48 -04:00
}
2022-03-30 08:22:10 -04:00
#slogan mark {
2022-03-30 15:54:35 -04:00
box-shadow: 2px 2px 0 black;
2022-03-30 06:28:40 -04:00
background-color: #17466E;
color: #F2F2FF;
2022-03-29 18:38:10 -04:00
position: relative;
2022-03-28 15:24:48 -04:00
}
2022-03-30 05:32:25 -04:00
@media only screen and (max-width: 600px) {
2022-03-30 08:22:10 -04:00
#body {
2022-03-30 06:28:40 -04:00
background-image: none;
}
2022-03-30 08:22:10 -04:00
#main {
2022-03-30 05:32:25 -04:00
margin-bottom: 0;
}
2022-03-30 08:22:10 -04:00
#header {
2022-03-30 05:32:25 -04:00
flex-direction: column;
align-items: center;
}
2022-03-30 08:22:10 -04:00
#quote {
2022-03-30 05:32:25 -04:00
max-width: 100%;
2022-03-30 08:45:44 -04:00
margin: 2rem 0;
}
#slogan {
margin: 2rem;
2022-03-30 05:32:25 -04:00
}
2022-03-30 06:31:56 -04:00
2022-03-30 08:22:10 -04:00
#slogan mark {
2022-03-30 06:31:56 -04:00
background-color: #EDAF1F;
color: black;
}
2022-03-30 05:32:25 -04:00
}
2022-03-30 08:45:44 -04:00
@media only screen and (min-width: 600px) {
#quote {
max-width: 80%;
}
}
@media only screen and (min-width: 768px) {
#quote {
2022-03-30 09:38:28 -04:00
max-width: 50%;
2022-03-30 08:45:44 -04:00
}
}
@media only screen and (min-width: 992px) {
#quote {
max-width: 40%;
}
}