62 lines
955 B
SCSS
62 lines
955 B
SCSS
body {
|
|
background: $blog_body-bg;
|
|
color: $white;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
margin: 0;
|
|
a {
|
|
color: $nom_blue-light;
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
main {
|
|
font-size: 18px;
|
|
line-height: 31px;
|
|
margin: 80px 20px;
|
|
.container {
|
|
margin: 0 auto;
|
|
max-width: 580px;
|
|
}
|
|
}
|
|
}
|
|
|
|
//
|
|
// ueber
|
|
//
|
|
|
|
main.ueber {
|
|
.container {
|
|
.contact.kagube.container {
|
|
background: $blog_body-bg-light;
|
|
border-radius: 8px;
|
|
display: flex;
|
|
padding: 15px;
|
|
table.contact.table {
|
|
font-size: 18px;
|
|
white-space: nowrap;
|
|
tr {
|
|
td {
|
|
&:first-of-type {
|
|
padding: 5px 20px 5px 0;
|
|
text-align: right;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
img.kagube {
|
|
max-height: 150px;
|
|
margin: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//
|
|
// impressum
|
|
//
|
|
|
|
main.impressum {
|
|
img {
|
|
filter: invert(100%);
|
|
}
|
|
}
|