<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Theme Name: Custom Starter Template
 * Description: Custom Child Theme fÃ¼r den TC GrÃ¼n-WeiÃŸ Frohlinde e. V., basierend auf Blocksy.
 * Author: Kilian Audoire
 * Template: blocksy
 * Text Domain: custom-starter-template
 */


 /* ===== EIGENE STYLE-ANPASSUNGEN ===== */


/* ===== CONTACT FORM 7 ===== */

/* Grundlayout */
.wpcf7-form {
font-family: inherit;
color: #17365c;
border-radius: 0;
max-width: 600px;
margin: 0 auto;
border: none;
}

/* Labels */
.wpcf7-form label {
font-weight: normal !important;
font-size: 18px !important;
color: #687279;
display: block;
margin-bottom: 0.5rem;
}

/* Pflichtfeld-Stern */
span.required {
color: #a30000;
margin-left: 0.2rem;
}

/* Inputs, Textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 textarea {
width: 100%;
padding: 0.75rem 1rem;
border-radius: 5px;
border: 1px solid #8DAE10;
font-family: inherit;
font-weight: normal;
background-color: white;
color: #05375E;
resize: vertical;
transition: all 0.2s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 textarea:focus {
outline: none;
box-shadow: 0 0 0 1px #8DAE10;
background-color: white;
border-color: #8DAE10;
}

/* Checkbox */
.wpcf7-form-control.wpcf7-acceptance {
display: inline-flex;
align-items: center;
gap: 8px;
}

.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
width: 20px;
height: 20px;
vertical-align: middle;
margin-bottom: 1px;
}

/* Datenschutztext neben Checkbox */
.wpcf7-form .wpcf7-acceptance label {
font-size: 16px !important;
}

/* Senden Button */
.wpcf7 input[type="submit"] {
width: 100%;
line-height: 35px;
background: linear-gradient(135deg, #8DAE10 0%, #70982bbe 100%);
border-radius: 5px;
color: white;
font-size: 18px;
font-family: inherit;
cursor: pointer;
transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.3s ease-in-out;
transform: translateY(0);
}

.wpcf7 input[type="submit"]:hover {
background: linear-gradient(135deg, #70982bbe 0%, #70982bbe 100%);
color: white;
transform: translateY(-4px);
}

.wpcf7 input[type="submit"]:active {
transform: translateY(0);
}

/* Fehlermeldungen unterhalb der Felder */
.wpcf7-not-valid-tip {
font-style: normal !important;
color: #a30000;
font-size: 16px !important;
margin-top: 0.25rem;
}

/* Meldungen unterhalb des Formulars */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
font-style: normal !important;
font-size: 15px;
text-align: center;
border: none !important;
border-left: 10px solid #9b9a9a !important;
background-color: #8DAE10;
border-radius: 3px;
padding: 15px;
margin-left: 0px;
color: #ffffff;
width: 100%;
opacity: 0;
animation: fadeIn 0.8s ease-in-out forwards;
}

/* Keyframes fÃ¼r Fade-In der Meldung unter dem Formular */
@keyframes fadeIn {
to {
  opacity: 1;
}
}

/* ERFOLGSMELDUNG AN STELLE DES FORMULARS */
.wpcf7-form.sent &gt; :not(.wpcf7-response-output) {
animation: fadeOutSmooth 0.4s ease-in-out forwards;
}

/* Erfolgsmeldung einblenden bei Erfolg */
.wpcf7-form.sent .wpcf7-response-output.wpcf7-mail-sent-ok {
animation: fadeInSmooth 0.5s ease-in-out forwards;
}

/* Fade Out Animation */
@keyframes fadeOutSmooth {
0% {
  opacity: 1;
}
100% {
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
  visibility: hidden;
  overflow: hidden;
}
}

/* Fade In Animation */
@keyframes fadeInSmooth {
from {
  opacity: 0;
}
to {
  opacity: 1;
}
}


/* Captcha Abstand zwischen Text und Eingabefeld */
.wpcf7-captchac {
margin-bottom: 12px; /* oder z.â€¯B. 16px, je nach Wunsch */
background-color: #F0F0F1;
}


/* ===== PRESSIDIUM COOKIE CONSENT ===== */

/* Ãœberschrift zentrieren */
#c-ttl {
text-align: center;
font-weight: bold;
margin-bottom: 0.5em;
font-size: 26px !important;
color: #398231;
}


/* ===== MITARBEITER INFOBOX ===== */

/* Zoom-Effekt */
/* Bild-Container: Zuschneiden auf festen Rahmen */
.infobox .wp-block-image {
overflow: hidden;
}

/* Zoom-Effekt beim Hover auf die Box */
.infobox:hover .wp-block-image img {
transform: scale(1.08);
}

/* Sanfte Animation */
.infobox .wp-block-image img {
transition: transform 0.3s ease;
}


/* ===== ZOOM-EFFEKT FÃœR STACKABLE POSTS BLOCK ===== */

/* 1. Bild-Wrapper beschneiden */
.stk-block-posts__item figure {
  overflow: hidden;
  margin: 0;
}

/* 2. Bild sanft skalieren vorbereiten */
.stk-block-posts__item figure img {
  transition: transform 0.6s ease !important;
  display: block;
  width: 100%;
  height: auto;
}

/* 3. Zoom beim Hover auf die gesamte Post-Box */
.stk-block-posts__item:hover figure img {
  transform: scale(1.1) !important;
}

.stk-block-posts__item figure img {
  transition: transform 0.6s ease !important;
  transform: scale(1); /* Ausgangszustand festlegen */
  transform-origin: center center; /* Skalierung bleibt mittig */
  backface-visibility: hidden; /* verhindert â€žZuckenâ€œ bei RÃ¼ckkehr */
  will-change: transform; /* Browser-Optimierung */
}


/* SLIDE-HOVER-EFFEKT FÃœR LINKS DEAKTIVIEREN
   NUR INNERHALB DES POSTS BLOCKS */

.stk-block-posts__item a,
.stk-block-posts__item a:hover {
  transform: none !important;
  transition: none !important;
}


/* ===== EVENT CALENDAR ===== */

/*Suche Veranstaltungen Button neben Suchfeld*/
#tribe-events-events-bar-search &gt; form &gt; button{
    margin-left: 20px;
    color: white;
}

#tribe-events-events-bar-search &gt; form &gt; button:hover{
    background-color: #3f8637e5;
    margin-left: 20px;
    color: white;
}

/*Suchfeld in der ListenÃ¼bersicht*/
input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], textarea {
    border: 2px solid #398231 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
}

/*Suche Veranstaltungen Button neben Suchfeld*/
#tribe-events-events-bar-search &gt; form &gt; button{
    margin-left: 20px;
}


/*Event Ãœberschrift in der Einzelansicht*/
#tribe-events-content &gt; h1{
    font-family: sans-serif;
    font-weight: bold;
}

/*Veranstalter Details*/
.tribe-block__organizer__details h3 {
    font-family: sans-serif;
    font-weight: bold;
}

/*Veranstaltungsort*/
.tribe-block__venue .tribe-block__venue__meta .tribe-block__venue__name h3 {
    font-family: sans-serif;
    font-weight: bold;
}

/*Breite des Kartenblocks des Veranstalters*/
.tribe-block__venue {
    max-width: 100%;
}

/*Button unterhalt der Veranstaltung*/
.tribe-block__event-website a{
    margin-top: 20px;
    background-color: white;
}

/*Textfarbe der Veranstaltungsnamen in der ListenÃ¼bersicht*/
.tribe-common a:not(.tribe-common-anchor--unstyle), .tribe-common a:not(.tribe-common-anchor--unstyle):active, .tribe-common a:not(.tribe-common-anchor--unstyle):focus, .tribe-common a:not(.tribe-common-anchor--unstyle):hover, .tribe-common a:not(.tribe-common-anchor--unstyle):visited {
    color: #398231 !important;
}

/*Textfarbe fÃ¼r AllDay Events*/
.tribe-events-schedule__all-day, .tribe-events-schedule__separator, .tribe-events-schedule__timezone {
    color: #65686b;
}

/*Textfarbe des Buttons unter der Veranstaltung*/
#tribe-events-content .tribe-block__event-website a, #tribe-events-content .tribe-block__event-website a:active, #tribe-events-content .tribe-block__event-website a:focus, #tribe-events-content .tribe-block__event-website a:hover{
    color: #398231;
}
</pre></body></html>