From db9fe0265bd9432e745980c0ab57ca8155f514c5 Mon Sep 17 00:00:00 2001 From: Nikolai Date: Mon, 20 Oct 2025 14:47:07 +0200 Subject: [PATCH] update 0.1 --- index.css | 101 +++++++++++++++++++++++++++++++++++++++ index.html | 16 +++---- kurse.css | 14 ++++++ kurse.html | 137 +++++++++++++++++++++++++++++++++++++++++++++++++++++ main.css | 59 +++++++++++++++++++++++ 5 files changed, 319 insertions(+), 8 deletions(-) create mode 100644 index.css create mode 100644 kurse.css create mode 100644 main.css diff --git a/index.css b/index.css new file mode 100644 index 0000000..843ab8e --- /dev/null +++ b/index.css @@ -0,0 +1,101 @@ +.arrow_slider { + width: 100px; + position: absolute; + top: 50%; + opacity: 0.5; + filter: drop-shadow(4px 3px 2px #ffffff) contrast(1000%) invert(100%) ; + z-index: 10; +} + +.arrow_slider:nth-child(1) { + left: 10%; + rotate: 180deg; +} + +.arrow_slider:nth-child(2) { + right: 10%; +} +.slider_wrap:hover .arrow_slider { + opacity: 1.0; + filter: drop-shadow(4px 3px 2px #ffffff) contrast(1000%) invert(100%) brightness(1.0); +} + +.slider_wrap { + width: 100%; + position: relative; + +} +.slider_image { + width: 100%; + max-height: 850px; + filter: brightness(0.5); +} + +.slider_info { + position: absolute; + top: 50%; + width: 100%; + text-align: center; + +} +.slider_info h2 { + font-size: 200%; + color: whitesmoke !important; + margin: 0 30% 0 30%; +} +.slider_info p { + color: whitesmoke !important; + font-size: 120%; + margin: 0 30% 0 30%; +} + +.slider_info a { + + color: whitesmoke !important; + margin: 20px 30% 0 30%; +} + + + + +.features_wrap { + display: flex; + flex-flow: wrap; + row-gap: 30px; + justify-content: space-between; +} + +.feature_wrap { + width: 48%; + height: 300px; + background-repeat: no-repeat; + background-size: cover; + + +} +.feature_wrap div { + width: 100%; + height: 100%; + backdrop-filter: brightness(0.5); +} +.feature_wrap p, h3 { + text-align: center; + padding: 10px; + color: whitesmoke; + text-shadow: 10px 10px 5px #000; +} +.feature_wrap:nth-child(1) { + background-image: url(../img/4_kraft2.jpeg); +} +.feature_wrap:nth-child(2) { + background-image: url(../img/3_cardio4.jpeg); +} +.feature_wrap:nth-child(3) { + background-image: url(../img/2_racket_2.jpeg); +} +.feature_wrap:nth-child(4) { + background-image: url(../img/7_wellness1.jpeg); +} + + + diff --git a/index.html b/index.html index 6f1e8ad..a72d99f 100644 --- a/index.html +++ b/index.html @@ -17,13 +17,13 @@
- +
@@ -45,7 +45,7 @@ -
+
@@ -84,8 +84,8 @@ In unserem großzügigen Ruhebereich können Sie die Entspannungsphasen Ihres We
-
- +
+

Firma

diff --git a/kurse.css b/kurse.css new file mode 100644 index 0000000..58f3b5c --- /dev/null +++ b/kurse.css @@ -0,0 +1,14 @@ +td,th { + padding: 10px; + border: solid; +} +table { + margin-top: 100px; + border-collapse: collapse; + width: 100%; + font-family: "Quicksand"; +} + +tr:nth-child(2n) { + background-color: lightgrey; +} \ No newline at end of file diff --git a/kurse.html b/kurse.html index e69de29..919f034 100644 --- a/kurse.html +++ b/kurse.html @@ -0,0 +1,137 @@ + + + + + + Sportstudio + + + + +
+
+

bodysports Fitness & Squash GmbH

+
+

Tel. 0711-4568555 Email: info@bodysports.de

+
+
+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MontagDienstagMittwochDonnerstagFreitag
09:30 – 10:15RückenfitPilatesBodyformingPilatesRückenfit
10:30 – 11:15Indoor CyclingCisombaStep & Burn
17:30 – 18:15ZumbaStep & BurnIndoor CyclingBody-WorkoutYoga
18:30 – 19:15Body-WorkoutZumbaRückenfitCisombaZumba
20:00 – 20:45YogaYoga
+
+ +
+ +
+
+

Firma

+

bodysports Fitness & Squash GmbH

+

Benzstraße 19

+

70199 Stuttgart

+

0711-4568555

+

info@bodysports.de

+
+
+

Links

+

Home

+

Kursen

+

About us

+

Öffnungszeiten

+
+
+

Öffnungszeiten

+

Montag – Freitag 09:30 – 23:30 Uhr

+

Samstag 13:00 – 21:00 Uhr

+

Sonntag 10:00 – 14:00 Uhr

+
+
+
+ + \ No newline at end of file diff --git a/main.css b/main.css new file mode 100644 index 0000000..32ef46d --- /dev/null +++ b/main.css @@ -0,0 +1,59 @@ +@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap'); +:root { + --bg-color: #F8F8F8; + --tx-color: #2E2E2E; +} + +* { + margin: 0; + padding: 0; + scroll-behavior: smooth; +} +a,p,h1,h2,h3 { + color: var(--tx-color); + font-family: "Quicksand"; +} + +body { + background-color: var(--bg-color); +} +.header_bottom_wrap { + display: flex; + justify-content: space-between; + align-items: center; + padding: 15px 120px; + +} +.header_bottom_wrap a { + text-decoration: none; + padding: 0 10px; +} +.block_wrap { + + padding: 0 120px; + margin: 0 0 80px 0; +} +.logo { + width: 70%; +} +.header_top_wrap { + display: flex; + justify-content: space-between; + align-items: center; + padding: 5px 120px; + opacity: 50%; +} + +.bottom_wrap { + display: flex; + justify-content: space-between; + font-size: 110%; +} +.bottom_wrap h2 { + color: #2E2E2E !important; +} +.bottom_logo { + width: 10%; + margin: auto; + margin-bottom: 20px; +} \ No newline at end of file