128 lines
2.9 KiB
CSS
Executable File
128 lines
2.9 KiB
CSS
Executable File
/* ======================================================
|
|
1. Grundlegende Einstellungen
|
|
====================================================== */
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
overflow-x: hidden;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* ======================================================
|
|
2. NAVBAR-DESIGN (Mit ffw_transp_72.gif Pattern)
|
|
====================================================== */
|
|
.navbar-custom {
|
|
background-color: #b30000;
|
|
/* Der Pfad geht eine Ebene hoch aus /css/ raus und dann in /bilder/ */
|
|
background-image: url('../bilder/ffw_transp_72.gif');
|
|
background-size: 7em;
|
|
background-repeat: repeat;
|
|
padding: 1rem 0;
|
|
}
|
|
|
|
.navbar-custom .navbar-brand,
|
|
.navbar-custom .nav-link {
|
|
color: #ffffff !important;
|
|
font-weight: 600;
|
|
/* Kleiner Schatten für bessere Lesbarkeit auf dem Pattern */
|
|
text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
|
|
}
|
|
|
|
.navbar-custom .nav-link:hover {
|
|
color: #000000 !important;
|
|
text-shadow: none;
|
|
}
|
|
|
|
.navbar-custom .dropdown-menu {
|
|
background-color: #900000;
|
|
/* Auch hier das Pattern für das Dropdown */
|
|
background-image: url('../bilder/ffw_transp_72.gif');
|
|
background-size: 9em;
|
|
border: 1px solid rgba(255,255,255,0.2);
|
|
}
|
|
|
|
.navbar-custom .dropdown-item {
|
|
color: #ffffff !important;
|
|
}
|
|
|
|
.navbar-custom .dropdown-item:hover {
|
|
background-color: rgba(0,0,0,0.2);
|
|
color: #ffffff !important;
|
|
}
|
|
|
|
/* Brand/Logo Zentrierung & Styling */
|
|
.navbar-brand {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.75rem;
|
|
margin-right: 1rem;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.navbar-brand img {
|
|
height: 3rem;
|
|
width: auto;
|
|
}
|
|
|
|
.navbar-brand span {
|
|
font-size: 1.2rem;
|
|
line-height: 1.2;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
/* Responsive Anpassungen */
|
|
@media (max-width: 370px) {
|
|
.navbar-brand {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
.navbar-brand img {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 520px) {
|
|
.navbar-brand span {
|
|
font-size: 2rem;
|
|
}
|
|
}
|
|
|
|
/* ======================================================
|
|
3. FACEBOOK-PLUGIN (ADAPTIVE BREITE)
|
|
====================================================== */
|
|
.fb-super-wrapper {
|
|
width: 100%;
|
|
padding: 2rem 0;
|
|
background-color: #f8f9fa;
|
|
text-align: center;
|
|
}
|
|
|
|
.fb-align-center {
|
|
display: inline-block;
|
|
text-align: left;
|
|
max-width: 700px;
|
|
width: 100%;
|
|
}
|
|
|
|
.fb-outer-container {
|
|
width: 100%;
|
|
max-width: 700px;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.fb-inner-container {
|
|
width: 100%;
|
|
}
|
|
|
|
.fb-page,
|
|
.fb-page > span,
|
|
.fb-page > span > iframe {
|
|
width: 100% !important;
|
|
display: block !important;
|
|
margin: 0 auto !important;
|
|
max-width: 100% !important;
|
|
} |