2023-01-19 17:21:20 +00:00
|
|
|
/* Variables */
|
|
|
|
$total_width: 95%;
|
|
|
|
|
|
|
|
$color_red: #cd1013;
|
|
|
|
|
2023-01-20 08:18:12 +00:00
|
|
|
$gap_columns_persons: 25px;
|
|
|
|
|
2023-01-19 17:21:20 +00:00
|
|
|
/* main styling */
|
|
|
|
|
|
|
|
body {
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
background-color: #ececec;
|
|
|
|
font: 90% 'Open Sans', sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wrapper {
|
|
|
|
width: 100%;
|
2023-01-19 19:31:40 +00:00
|
|
|
min-height: 100.5vh;
|
2023-01-19 17:21:20 +00:00
|
|
|
max-width: 1280px;
|
|
|
|
background-color: #fcfcfc;
|
|
|
|
|
|
|
|
#header {
|
|
|
|
border-bottom: 2px solid rgba(173,173,173,.5);
|
|
|
|
margin: 0 auto 30px;
|
|
|
|
|
|
|
|
> .logo-row {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
margin: 15px 0 10px 30px;
|
|
|
|
}
|
|
|
|
.logo-vfl {
|
|
|
|
margin: 12px 45px 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .slider {
|
|
|
|
width: calc(100% - 60px);
|
|
|
|
// height: 250px;
|
|
|
|
display: flex;
|
|
|
|
padding: 0 10px;
|
|
|
|
border-right: 20px solid $color_red;
|
|
|
|
border-left: 20px solid $color_red;
|
|
|
|
|
|
|
|
> img {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .nav {
|
|
|
|
width: $total_width;
|
|
|
|
height: 30px;
|
|
|
|
margin: 5px auto 0;
|
|
|
|
font: 1.5em 'Open Sans Condensed', sans-serif;
|
|
|
|
|
|
|
|
nav {
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
a {
|
|
|
|
margin: 0 40px 0 0;
|
|
|
|
// height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
width: $total_width;
|
|
|
|
display: flex;
|
|
|
|
margin: auto;
|
|
|
|
|
|
|
|
> .left-menu {
|
|
|
|
width: 180px;
|
|
|
|
margin-right: 40px;
|
|
|
|
flex: auto 0 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
> a {
|
|
|
|
text-decoration: none;
|
|
|
|
display: block;
|
|
|
|
height: 35px;
|
|
|
|
margin: 2px 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 0px 15px;
|
|
|
|
font: 1.5em 'Open Sans Condensed', sans-serif;
|
|
|
|
|
|
|
|
color: black;
|
|
|
|
background-color: #ececec;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
background-color: $color_red;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
flex: 100% 0 1;
|
|
|
|
|
|
|
|
> h1:nth-child(1) {
|
|
|
|
color: $color_red;
|
|
|
|
font-family: 'Droid Serif',serif;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer {
|
|
|
|
width: 95%;
|
|
|
|
margin: 30px auto 0;
|
|
|
|
padding: 4px 10px 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
border-top: 1px solid #a5a5a5;
|
|
|
|
|
|
|
|
.first-entry {
|
|
|
|
font: 1em 'Open Sans Condensed', sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.meta-menu {
|
|
|
|
max-width: 70%;
|
|
|
|
> ul {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
font: 1.4em 'Open Sans Condensed', sans-serif;
|
|
|
|
|
|
|
|
> li {
|
|
|
|
list-style: none;
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-19 20:05:28 +00:00
|
|
|
.person-list {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2023-01-20 08:18:12 +00:00
|
|
|
gap: $gap_columns_persons;
|
|
|
|
margin: 0 0 $gap_columns_persons;
|
2023-01-19 20:05:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.person {
|
2023-01-20 08:18:12 +00:00
|
|
|
width: calc(50% - #{$gap_columns_persons} / 2);
|
2023-01-19 20:05:28 +00:00
|
|
|
height: 80px;
|
|
|
|
// margin: 10px 25px 10px 0;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
> .image {
|
|
|
|
flex: 60px 0 0;
|
2023-01-20 08:18:12 +00:00
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-01-19 20:05:28 +00:00
|
|
|
}
|
|
|
|
> .content {
|
|
|
|
flex: 1px 1 0;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
> .content-vorstand {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
|
|
|
> .role {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
> .name {
|
|
|
|
img {
|
|
|
|
margin: 0 10px 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-19 17:21:20 +00:00
|
|
|
@font-face{
|
|
|
|
font-family: 'Open Sans Condensed';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
src: url("/ttf/OpenSans_Condensed-Light.ttf") format('truetype');
|
|
|
|
}
|
|
|
|
@font-face{
|
|
|
|
font-family: 'Droid Serif';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: normal;
|
|
|
|
src: url('/ttf/DroidSerif.ttf') format('truetype')
|
|
|
|
}
|