lynnesbian.space/assets/style.css

70 lines
911 B
CSS

body {
font-family: "Roboto", sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
}
body div {
flex-grow: 1;
}
html {
background: #fafafa;
}
h1 {
font-family: "Open Sans", "Roboto", sans-serif;
text-align: center;
font-size:4em;
font-weight: 200;
}
#bune {
height:200px;
min-height: 15vh;
margin: 50px auto;
display: block;
}
p, footer, ul {
width: 80%;
margin: 20px auto;
line-height: 1.3em;
}
p, ul {
font-size: 120%;
}
li {
margin-top: 3px;
}
ul {
list-style-type: "- ";
}
a {
color: mediumpurple;
text-decoration: none;
}
footer {
text-align: center;
color: grey;
font-style: italic;
margin: 20px auto;
box-sizing: content-box;
}
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
body {
font-size: 250%;
}
p, footer, ul {
line-height: 1.6em;
}
#bune {
margin-bottom: 0;
}
h1 {
margin-top: 0;
}
}