diff --git a/public/css/styles.css b/public/css/styles.css new file mode 100644 index 0000000..baf61bb --- /dev/null +++ b/public/css/styles.css @@ -0,0 +1,241 @@ +/* Allgemeine Styles */ +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + background-color: #f4f4f9; + color: #333; + background-image: url('../img/bg2.jpg'); + background-size: cover; + background-position: center; + background-attachment: fixed; +} + +h1 { + text-align: center; + padding: 20px; + background-color: #0078d7; + color: white; + margin: 0; + font-family: 'Dancing Script', cursive; +} + +.container { + max-width: 802px; + margin: 20px auto; + padding: 20px; + background: white; + border-radius: 8px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); +} + +/* Tab Styles */ +.tabs { + display: flex; + flex-wrap: wrap; /* Ermöglicht Zeilenumbruch bei kleineren Bildschirmen */ + border-bottom: 2px solid #ddd; + margin-bottom: 20px; +} +.tab { + padding: 10px; + text-align: center; + cursor: pointer; + border: 1px solid #ddd; + border-bottom: none; + background: #f9f9f9; + white-space: nowrap; /* Verhindert, dass der Text umbricht */ + box-sizing: border-box; /* Verhindert, dass Padding die Breite überschreitet */ + margin: 5px; /* Etwas Abstand zwischen den Tabs */ + flex: 0 1 auto; /* Auto-Anpassung der Breite je nach Inhalt */ +} +.tab.active { + background: white; + font-weight: bold; + border-bottom: 2px solid white; +} + +/* Content Styles */ +.content { + display: none; +} +.content.active { + display: block; +} + +/* Card Styles */ +.card { + border: 1px solid #ddd; + border-radius: 8px; + padding: 12px; + margin: 10px 0; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + background: #fff; + display: flex; + align-items: center; + justify-content: space-between; +} +.card h3 { + margin: 0; + font-size: 18px; +} +.card a { + text-decoration: none; + color: white; + background: #0078d7; + padding: 10px 15px; + border-radius: 5px; + font-size: 14px; +} +.card a:hover { + background: #005bb5; +} + +/* Suche Widget */ +.search-widget { + position: fixed; + top: 100px; + right: 200px; + background-color: #ffffff; + color: #0078d7; + border-radius: 8px; + padding: 20px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); + width: 280px; + z-index: 1000; + text-align: center; + transition: all 0.3s ease-in-out; +} +.search-widget h3 { + margin-bottom: 10px; + font-size: 18px; + color: #0078d7; +} +.search-widget input { + width: 80%; + padding: 10px; + margin: 5px 0; + border-radius: 5px; + border: 1px solid #ddd; + font-size: 14px; +} + +/* Widget Styles für den Bot-Link */ +.bot-widget { + position: fixed; + right: 200px; + bottom: 450px; + background-color: #0078d7; + color: white; + padding: 20px; + border-radius: 8px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + width: 280px; + z-index: 999; + text-align: center; + transition: all 0.3s ease-in-out; +} + +/* Sicherstellen, dass der Text in Weiß bleibt */ +.bot-widget a { + color: white; /* Textfarbe für Links auf weiß setzen */ + text-decoration: none; /* Entfernt die Unterstreichung der Links */ +} + +.widget-content { + margin-bottom: 15px; +} + +.widget-button { + padding: 12px 20px; + background-color: #005bb5; + color: white; /* Sicherstellen, dass der Text auf dem Button weiß ist */ + border: none; + border-radius: 5px; + font-size: 14px; + cursor: pointer; + transition: background-color 0.3s ease-in-out; +} + +.widget-button:hover { + background-color: #004080; +} + +/* Footer Styles */ +footer { + position: fixed; + left: 0; + bottom: 0; + width: 100%; + background-color: #0078d7; + color: white; + text-align: center; + padding: 20px; + border-top: 2px solid #ddd; + z-index: 1000; +} + +footer p { + margin: 5px 0; + font-size: 14px; +} + +footer a { + color: white; + text-decoration: none; + font-weight: bold; +} + +footer a:hover { + text-decoration: underline; +} + +/* Responsives Layout für kleinere Bildschirme */ +@media (max-width: 768px) { + .tabs { + justify-content: center; /* Tabs zentrieren bei mittleren Bildschirmgrößen */ + } +} + +@media (max-width: 480px) { + .tabs { + font-size: 14px; /* Kleinere Schriftgröße für Tabs */ + } + + .tab { + max-width: 100%; /* Tabs auf volle Breite bei sehr kleinen Bildschirmen */ + } +} + +.navigation { + margin-top: 10px; + text-align: center; +} + +.navigation button { + padding: 6px 12px; + margin: 0 3px; + font-size: 12px; + cursor: pointer; + border: 1px solid #ccc; + background-color: #005bb5; /* Standardfarbe */ + color: white; +} + +.navigation button:hover { + background-color: #004080; /* Hover-Farbe */ +} + +.page-numbers { + font-size: 12px; + margin: 0 8px; +} + +.navigation button.active { + background-color: #005bb5; + color: white; +} + +.navigation button.disabled { + background-color: #ccc; + cursor: not-allowed; +} \ No newline at end of file