lynnesbian.space/assets/style.css

73 lines
963 B
CSS

html {
background: #fafafa;
}
body {
font-family: "Roboto", sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
}
#main {
flex-grow: 1;
width: 80%;
margin: 0 auto;
}
h1 {
text-align: center;
font-size: 4em;
font-weight: 200 !important;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Open Sans", "Roboto", sans-serif;
font-weight: 400;
}
#bune {
height:200px;
min-height: 15vh;
margin: 50px auto;
display: block;
}
p, footer, ul {
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;
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;
}
}