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.

81 lines
1.2 KiB
CSS

/*@font-face
{
font-family: Jost;
src: url('/Jost-400-Book.otf');
}*/
html {
background: #d8f0ff;
font-family: sans-serif;
}
#container {
background: white;
margin: 2em auto;
box-shadow: 0px 0px 12px 4px lightgray;
width: 1024px;
max-width: 97%;
}
#header {
padding: 1.2em;
1 year ago
}
#logo {
float: right;
height: inherit;
1 year ago
}
#menu {
background: #555;
border-bottom: 3px solid #0066cc;
1 year ago
}
.menu-item {
display: inline-block;
color: white;
border-left: 1px solid gray;
padding: 0.5em 1em;
font-weight: bold;
text-decoration: none;
1 year ago
}
.menu-item:first {
border-left: 0;
1 year ago
}
.menu-item:hover {
background: #0066cc;
1 year ago
}
.content {
padding: 0.75em 1.5em;
font-size: 1.2em;
1 year ago
}
#footer {
font-size: 6px;
color: lightgray;
text-align: right;
1 year ago
}
#title {
border-bottom: 1px solid lightgray;
height: 60px;
position: relative;
margin-bottom: 0.2em;
1 year ago
}
#subtitle {
color: gray;
1 year ago
}
h1 {
margin-bottom: 0.2em;
position: absolute;
bottom: 0;
font-size: 2.5em;
color: black;
1 year ago
}
img {
max-width: 100%;
1 year ago
}
table {
width: 100%;
1 year ago
}
td {
vertical-align: top;
min-width: 240px;
}
td:first-child {
padding-right: 2em;
1 year ago
}