Files
poems/style.css
2017-03-29 17:55:51 +02:00

34 lines
577 B
CSS

@font-face {
font-family: 'charterregular';
src: url('/charter_regular-webfont.eot');
src: url('/charter_regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
}
.poem {
margin: auto;
max-width: 1000px;
height: 100vh;
font-size: 23px;
font-family: 'charterregular';
padding-top: 3em;
display: none;
}
#bottom {
position: absolute;
bottom: 10px;
margin-left: calc(50vw - 70px);
border-top: 3px solid;
}
.nav {
font-size: 50px;
padding: 10px;
cursor: pointer;
}