This commit is contained in:
2017-03-29 17:49:36 +02:00
commit 556f37792b
8 changed files with 179 additions and 0 deletions

34
style.css Normal file
View File

@@ -0,0 +1,34 @@
@font-face {
font-family: 'charterregular';
src: url('http://blog.veitheller.de/charter_regular-webfont.eot');
src: url('http://blog.veitheller.de/charter_regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
}
.poem {
margin: auto;
max-width: 900px;
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;
font-family: 'charterregular';
cursor: pointer;
}