You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

125 lines
1.6 KiB
CSS

5 years ago
@font-face {
font-family: "Book";
src: url("./media/fonts/standard-book-webfont.woff");
}
@font-face {
font-family: "Book";
src: url("./media/fonts/standard-book-italic-webfont.woff");
font-style: italic;
}
* {
font-family: Book ;
}
main {
width: 90%;
margin: auto;
}
header {
z-index: 101;
background-color: white;
padding-top: 10px;
line-height: .9em;
font-size: 14px;
text-align: center;
}
h1 {
font-style: italic;
}
a {
text-decoration: none;
}
article {
width: 100%;
}
nav {
background-color: white;
}
ul {
width: 80%;
margin: auto;
list-style: none;
font-size: 15px;
padding: 0px;
line-height: 19px;
}
#left {
float: left;
width: 50%;
margin: auto;
margin-bottom: 15px;
}
.vl {
z-index: -1;
border-left: 2px solid black;
height: 500px;
position: fixed;
left: 50%;
margin-left: -1px;
bottom: 19px;
}
#right {
float: right;
width: 50%;
margin: auto;
margin-bottom: 15px;
}
section {
width: 96%;
margin: auto;
}
#pdf {
width: 94%;
height: 55vh;
}
#description {
height: 55vh;
overflow-y: auto;
}
#firstLine {
margin-top: 0px;
}
.extras {
font-style: italic;
}
@media only screen and (max-width: 600px) {
header {
font-size: 10px;
}
#left { width: 96%; }
.vl { visibility: hidden; }
#right {
width: 96%;
float: left
}
#pdf { width: 96%; }
}
5 years ago
@media only screen and (min-height: 805px) {
5 years ago
.vl { height: : 700px; }
}