hugo-page-test/themes/tsc_vfl/assets/css/main.scss

564 lines
12 KiB
SCSS
Raw Normal View History

2023-01-19 17:21:20 +00:00
/* Variables */
$total_width: 95%;
$color_red: #cd1013;
$color_background_mobile_menu_header: #e0e0e0;
2023-01-19 17:21:20 +00:00
2023-01-20 08:18:12 +00:00
$gap_columns_persons: 25px;
2023-01-21 18:50:39 +00:00
/* Mixins */
@mixin menu-style () {
font-family: 'Open Sans Condensed', sans-serif;
color: black;
text-decoration: none;
&.active, &:hover {
color: $color_red;
}
}
@mixin media-large {
@media screen and (min-width: 700px) {
@content;
}
}
2023-01-19 17:21:20 +00:00
/* main styling */
body {
padding: 0px;
margin: 0px;
background-color: #ececec;
font: 90% 'Open Sans', sans-serif;
2023-10-25 12:38:54 +00:00
height: 100vh;
2023-01-19 17:21:20 +00:00
}
2023-01-20 15:28:39 +00:00
h1, h2, h3, h4, h5, h6 {
color: $color_red;
font-family: 'Droid Serif',serif;
font-weight: normal;
}
h1 {
font-size: 233%;
2023-01-21 07:36:37 +00:00
margin-top: 0;
2023-01-20 15:28:39 +00:00
}
2023-01-19 17:21:20 +00:00
#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;
2023-01-21 19:29:18 +00:00
margin: auto;
2023-01-19 17:21:20 +00:00
background-color: #fcfcfc;
2023-10-25 12:38:54 +00:00
overflow: auto;
2023-01-19 17:21:20 +00:00
#header {
border-bottom: 2px solid rgba(173,173,173,.5);
margin: 0 auto 30px;
width: 100%;
2023-01-19 17:21:20 +00:00
> .logo-row {
display: flex;
justify-content: space-between;
width: 100%;
2023-01-19 17:21:20 +00:00
.logo {
margin: 15px 30px 10px 30px;
img {
max-width: 100%;
}
2023-01-19 17:21:20 +00:00
}
.logo-vfl {
margin: 12px 45px 0 0;
img {
max-width: 100%;
}
2023-01-19 17:21:20 +00:00
}
}
> .slider {
width: calc(100% - 60px);
2023-10-25 12:38:54 +00:00
// visibility: hidden;
// height: 250px;
display: none;
@include media-large() {
display: flex;
}
2023-01-19 17:21:20 +00:00
padding: 0 10px;
border-right: 20px solid $color_red;
border-left: 20px solid $color_red;
2023-01-21 22:57:03 +00:00
position: relative;
2023-01-19 17:21:20 +00:00
> img {
2023-01-21 22:57:03 +00:00
width: calc(100% - 20px);
// display: block;
position: absolute;
2023-01-21 22:57:23 +00:00
z-index: 0;
2023-01-21 22:57:03 +00:00
opacity: 1;
transition: opacity 2.5s ease-in-out;
&.hidden {
opacity: 0;
}
&.placeholder {
position: static;
visibility: hidden;
width: 100%;
}
2023-01-19 17:21:20 +00:00
}
2023-01-21 22:57:23 +00:00
.dots {
position: absolute;
width: 95%;
z-index: 1;
left: 0;
bottom: 10%;
display: flex;
justify-content: end;
.dot {
width: 10px;
height: 10px;
margin: 0 10px 0 0;
border-radius: 5px;
background-color: #eee;
border: 1.5px solid #444;
&.active {
background-color: #444;
border: 1.5px solid #ccc;
}
}
}
2023-01-19 17:21:20 +00:00
}
> .nav {
width: $total_width;
height: 30px;
margin: 5px auto 0;
font: 1.5em 'Open Sans Condensed', sans-serif;
display: none;
@include media-large() {
display: block;
}
2023-01-19 17:21:20 +00:00
nav {
display: flex;
height: 100%;
justify-content: flex-start;
align-items: center;
a {
margin: 0 40px 0 0;
// height: 100%;
2023-01-21 18:50:39 +00:00
@include menu-style;
2023-01-19 17:21:20 +00:00
}
}
}
}
.main {
width: $total_width;
display: flex;
margin: auto;
2024-01-04 16:41:21 +00:00
> .left-side {
2023-01-19 17:21:20 +00:00
flex: auto 0 0;
flex-direction: column;
2024-01-04 16:41:21 +00:00
margin-right: 40px;
display: none;
@include media-large() {
display: flex;
}
2024-01-04 16:41:21 +00:00
.announcements {
margin-top: 20px;
background-color: #ececec;
.entry {
margin: 25px 0;
padding: 0 15px;
&:first-child {
margin-top: 15px;
}
&:last-child {
margin-bottom: 15px;
}
.time {
font-weight: bold;
}
a {
color: black;
}
}
}
}
.left-menu {
width: 180px;
display: flex;
flex-direction: column;
2023-01-19 17:21:20 +00:00
> 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;
2023-01-21 18:50:39 +00:00
&.active, &:hover {
2023-01-19 17:21:20 +00:00
background-color: $color_red;
color: white;
}
}
}
#content {
flex: 100% 0 1;
2023-01-21 22:57:03 +00:00
text-align: justify;
max-width: 100%;
2023-01-21 07:36:37 +00:00
table {
width: 100%;
border-collapse: collapse;
td, th {
padding: 5px;
border: none;
}
tr {
background-color: #dedede;
&:nth-of-type(2n) {
background-color: #f7f7f7;
}
}
thead > tr {
background-color: $color_red;
color: white;
text-align: left;
}
}
.float-right {
float: right;
2023-01-21 22:57:03 +00:00
margin: 7px 0 7px 15px;
2023-01-21 07:36:37 +00:00
}
a {
color: black;
2023-01-21 17:51:05 +00:00
&[href^=http] , &.download {
2023-01-21 07:36:37 +00:00
&::before {
margin: 0 5px 0 0;
top: 3px;
position: relative;
content: url('img/download.png');
}
}
}
2023-01-21 18:27:54 +00:00
img {
max-width: 100%;
}
.to-top {
margin: 45px 0 0;
}
2023-01-21 17:51:05 +00:00
.disclaimer {
font-size: 75%;
}
2023-01-19 17:21:20 +00:00
}
}
#footer {
width: 95%;
margin: 30px auto 0;
padding: 4px 10px 0;
display: flex;
justify-content: space-between;
border-top: 1px solid $color_hor_line;
2023-01-19 17:21:20 +00:00
.first-entry {
font: 1em 'Open Sans Condensed', sans-serif;
}
2024-01-05 11:30:52 +00:00
.facebook {
width: 20px;
height: 20px;
display: block;
background-image: url("img/facebook.jpg");
}
2023-01-19 17:21:20 +00:00
.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-21 18:50:39 +00:00
a {
@include menu-style();
}
2023-01-19 17:21:20 +00:00
}
}
}
}
}
2023-10-25 12:38:54 +00:00
#overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
display: flex;
z-index: 10;
&.hidden {
display: none;
}
.background {
width: 100%;
height: 100%;
position: absolute;
z-index: -10;
background-color: lightgrey;
opacity: 50%;
}
.spacer {
flex: auto 1 0;
}
.dialog-column {
flex: 0 1 1;
display: flex;
flex-direction: column;
justify-content: center;
.dialog {
background-color: white;
padding: 10px;
flex: 30% 0 0;
// height: 30%;
}
}
}
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-10-08 18:10:42 +00:00
.news-blog {
max-width: 100%;
2023-10-08 18:10:42 +00:00
.blog-entry {
max-width: 100%;
2023-10-08 18:10:42 +00:00
.header {
max-width: 100%;
2023-10-25 12:38:54 +00:00
margin: 5px 0 10px;
text-align: left;
2023-10-08 18:10:42 +00:00
a {
font-size: larger;
}
}
.details {
display: flex;
2023-10-25 12:38:54 +00:00
// min-height: 240px;
margin-right: 2px;
flex-direction: column;
@include media-large(){
flex-direction: row;
}
2023-10-08 18:10:42 +00:00
.teaser-image {
flex: 33% 1 0;
2023-10-25 12:38:54 +00:00
img {
width: 90%;
height: 190px;
object-fit: contain;
object-position: left top;
}
2023-10-08 18:10:42 +00:00
}
2023-10-25 12:38:54 +00:00
.right-side {
2023-10-08 18:10:42 +00:00
flex: 66% 1 1;
2023-10-25 12:38:54 +00:00
display: flex;
flex-direction: column;
.intro {
padding-right: 40px;
}
.more {
// float: right;
margin-top: 20px;
text-align: right;
}
2023-10-08 18:10:42 +00:00
}
2023-10-25 12:38:54 +00:00
// .teaser-image, .intro {
2023-10-08 18:10:42 +00:00
// display: ;
2023-10-25 12:38:54 +00:00
// }
2023-10-08 18:10:42 +00:00
}
2023-10-25 12:38:54 +00:00
2023-10-08 18:10:42 +00:00
}
.pagination {
display: flex;
list-style: none;
padding: 0;
max-width: 400px;
margin: auto;
2023-10-08 18:10:42 +00:00
.page-item {
flex: auto 1 0;
margin: 5px;
.page-link {
display: block;
text-align: center;
width: 100%;
height: 100%;
padding: 5px 0;
2023-10-08 18:10:42 +00:00
}
}
.disabled {
visibility: hidden;
}
}
}
2024-01-04 16:41:21 +00:00
.announcement-list {
.entry {
margin: 0 30px;
.time {
font-weight: bold;
margin-right: 10px;
}
}
}
.tsc-image {
margin: 0 auto;
width: fit-content;
}
2023-10-25 12:38:54 +00:00
.tsc-gallery {
display: grid;
align-items: center;
justify-items: center;
2023-10-25 12:38:54 +00:00
&.cols-2 {
grid-template-columns: 1fr 1fr;
}
&.cols-3 {
grid-template-columns: 1fr 1fr 1fr;
}
&.cols-4 {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
.tsc-gallery-img {
margin: 20px;
2023-10-25 12:38:54 +00:00
}
}
2024-01-04 13:10:13 +00:00
:root {
--color-vhvorne: #ddcb55;
--color-vhmitte: #c98879;
--color-vhhinten: #0082c9;
}
.calendar-color-legend {
display: flex;
flex-direction: row;
margin: 10px;
.vorne {
background-color: var(--color-vhvorne);
}
.mitte {
background-color: var(--color-vhmitte);
}
.hinten {
background-color: var(--color-vhhinten);
color: white;
}
.vorne, .mitte, .hinten {
margin-right: 20px;
padding: 5px 10px;
}
}
2023-01-19 17:21:20 +00:00
@font-face{
font-family: 'Open Sans Condensed';
font-style: normal;
font-weight: 400;
2023-01-21 19:29:18 +00:00
src: url("ttf/OpenSans_Condensed-Light.ttf") format('truetype');
2023-01-19 17:21:20 +00:00
}
@font-face{
font-family: 'Droid Serif';
font-style: normal;
font-weight: normal;
2023-01-21 19:29:18 +00:00
src: url('ttf/DroidSerif.ttf') format('truetype')
2023-01-19 17:21:20 +00:00
}