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.
110 lines
1.4 KiB
CSS
110 lines
1.4 KiB
CSS
@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 ;
|
|
}
|
|
|
|
#wrapper {
|
|
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;
|
|
}
|
|
|
|
section {
|
|
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;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
article {
|
|
width: 96%;
|
|
margin: auto;
|
|
}
|
|
|
|
#pdf {
|
|
width: 94%;
|
|
height: 55vh;
|
|
}
|
|
|
|
#description {
|
|
height: 55vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.extras {
|
|
font-style: italic;
|
|
}
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
header {
|
|
font-size: 10px;
|
|
}
|
|
|
|
#left { width: 96%; }
|
|
.vl { visibility: hidden; }
|
|
#right { width: 96%; }
|
|
|
|
article {
|
|
width: 100%
|
|
}
|
|
|
|
|
|
} |