From 889419c762f10ce23b69362a8b9c8b614d057c87 Mon Sep 17 00:00:00 2001 From: danielvici123 <94993276+danielvici@users.noreply.github.com> Date: Fri, 15 Nov 2024 10:08:51 +0100 Subject: [PATCH] aufgabe 24-11-15 Aufgabe: Alle seiten verbinden und die sollen gleiche struktur haben --- komp/24-10-16/aufgabe.html | 79 +++++-------------- komp/hauptseite.css | 22 ------ komp/hauptseite.html | 30 +++++--- komp/indexcc.html | 44 +---------- komp/listen.html | 38 +++++----- komp/stundenplan.html | 52 +++++-------- komp/style.css | 152 +++++++++++++++++++++++++++++++++++++ komp/ueberschriften.html | 17 +++++ 8 files changed, 246 insertions(+), 188 deletions(-) delete mode 100644 komp/hauptseite.css create mode 100644 komp/style.css diff --git a/komp/24-10-16/aufgabe.html b/komp/24-10-16/aufgabe.html index 039d372..d80bf96 100644 --- a/komp/24-10-16/aufgabe.html +++ b/komp/24-10-16/aufgabe.html @@ -4,69 +4,26 @@ Tabelle - + -

DANIEL

- +
WvSS
+ +

DANIEL

diff --git a/komp/hauptseite.css b/komp/hauptseite.css deleted file mode 100644 index 76eb08e..0000000 --- a/komp/hauptseite.css +++ /dev/null @@ -1,22 +0,0 @@ -.bild-100x100 { - width: 100px; - height: 100px; -} -.text-gruen { - color: #34ff34; -} -.text-allign-middle{ - text-align: center; -} -* { - border : 1px solid black; -} -.text-bold { - font-weight: bold; -} -.p-10 { - padding: 10px; -} -.li-abstand { - margin-bottom: 10px; -} \ No newline at end of file diff --git a/komp/hauptseite.html b/komp/hauptseite.html index a8a83c1..c5cae26 100644 --- a/komp/hauptseite.html +++ b/komp/hauptseite.html @@ -3,23 +3,31 @@ Title - + +
WvSS
+

2BKI11

-

Daniel

+

Daniel C.

Iron 3 LoL Player

-picture could not be load - +picture could not be load \ No newline at end of file diff --git a/komp/indexcc.html b/komp/indexcc.html index 421a087..1be47d2 100644 --- a/komp/indexcc.html +++ b/komp/indexcc.html @@ -4,48 +4,7 @@ Document - +
@@ -56,6 +15,7 @@
  • Tabelle mit Überschriften
  • Home
  • Brave
  • +
  • Stundenplan
  • diff --git a/komp/listen.html b/komp/listen.html index c0ca64b..3429679 100644 --- a/komp/listen.html +++ b/komp/listen.html @@ -5,26 +5,28 @@ Document - + -

    Überschrift 1

    +
    WvSS
    + + + +

    Überschrift 1

    Hallo Welt!

    2BKI21
    diff --git a/komp/style.css b/komp/style.css new file mode 100644 index 0000000..ba01445 --- /dev/null +++ b/komp/style.css @@ -0,0 +1,152 @@ +.bild-150x100 { + width: 150px; + height: 100px; +} +.text-gruen { + color: #34ff34; +} +.text-allign-middle{ + text-align: center; +} +.text-bold { + font-weight: bold; +} +.p-10 { + padding: 10px; +} +.li-abstand { + margin-bottom: 10px; +} + +* { + font-family: Arial, sans-serif; + box-sizing: border-box; + /*border: 1px solid black;*/ +} +div { + padding: 15px; +} +#div1{ + background-color: aqua; +} +#div2{ + background-color: bisque; +} +#div3{ + background-color: lightpink; +} +header { + background-color: royalblue; + color: darkred; + padding: 15px; + text-align: center; + font-weight: bold; +} +nav a { /* a wird nur in nav geändert */ + text-decoration: none; + padding: 14px 16px; + margin: 5px; + background: greenyellow; + display: flex; + flex: 1; + align-items: center; +} +nav li { + display: inline-block; +} +nav { + background-color: gray; +} +.aktiv { + background-color: gray; +} +.listen-h1 { + color: lawngreen; +} +table, td { + border: 2px black solid; + padding: 5px; + align-items: flex; + +} +.normal { + background-color: orange; + padding: 5px; + border-bottom: 1px solid black; +} +.fhr { + background-color: blueviolet; + padding: 5px; + border-bottom: 1px solid black; +} +.info { + background-color: aliceblue; + padding: 5px; +} +.keineschule { + background-color: lightskyblue; + width: 70px; + +} +.unterline, .bb { + border-bottom: 1px solid black; +} +.br { + border-right: 1px solid black; +} +td{ + border:black 1px solid; + font-family:Arial, sans-serif; + font-size:14px; + padding:10px 5px; + } + th{ + border:black 1px solid; + font-family:Arial, sans-serif; + font-size:14px; + font-weight:normal; + padding:10px 5px; + } + .hw{ + border-collapse:collapse; + border-spacing:0; + + background-color:#34ff34; + border-color:black; + text-align:center; + vertical-align:top + } + .eins{ + border-collapse:collapse; + border-spacing:0; + + background-color:#9698ed; + border-color:black; + text-align:center; + } + .b{ + border-collapse:collapse; + border-spacing:0; + + background-color:#dae8fc; + border-color:black; + text-align:center; + } + .bki21{ + border-collapse:collapse; + border-spacing:0; + + background-color:#f8a102; + border-color:black; + text-align:center; + vertical-align:top + } + .O{ + border-collapse:collapse; + border-spacing:0; + + background-color:#00d2cb; + border-color:black; + text-align:center; + vertical-align:top + } \ No newline at end of file diff --git a/komp/ueberschriften.html b/komp/ueberschriften.html index 0ad1c48..e63b795 100644 --- a/komp/ueberschriften.html +++ b/komp/ueberschriften.html @@ -4,9 +4,26 @@ Document + +
    WvSS
    +

    Überschrift 1

    Überschrift 2

    Überschrift 3

    Tag ->
    Stunde\/