diff --git a/background.svg b/background.svg new file mode 100644 index 0000000..cb79eaa --- /dev/null +++ b/background.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/index.html b/index.html index ae920f5..c158dfa 100644 --- a/index.html +++ b/index.html @@ -1,202 +1,59 @@ - Elias Müller + - - + -
-
- tux penguin profile image -
-
-
Name
-
Elias Müller
- -
Geboren am
-
18.08.2003
- -
Wohnort
-
Petersberg
-
+
+
+
+ tux penguin profile image +
+

Elias Müller

+
    +
  • Softwareentwickler
  • +
  • Systemadministrator
  • +
+
+ +
+
+
    +
  • 21 Jahre
  • +
  • Fulda
  • +
  • Fachinformatiker [AE]
  • +
    +
  • elias@elias-mueller.com
  • +
    +
  • mhsl.eu
  • +
  • Gitea
  • +
  • GitHub
  • + +
+ +
+ +
+ + + + +
+ + + +
+ + + +
+
-
-
-
-

Über mich

-

- Als angehender Softwareentwickler lebe ich sehr nahe an der Welt aller Computern. - Das Hosting von Dienstleistungen mit Proxmox auf meinem Home-Server ist neben der Softwareentwicklung ein weiteres gepflegtes Hobby, welches ich mit großer Leidenschaft verfolge. - Dabei ist der Umgang mit Linux täglich gefragt, zumal auch mein Desktop darunter läuft. -

-
-
-
-

Interessen

-
    -
  • Open Source
  • -
  • Linux Foundation
  • -
  • RaspberryPi Foundation
  • -
  • Pine64
  • -
  • Pinguine und Igel
  • -
-
-
-
-

Bildung

- -
-
2010-2014
-
Grundschule: Johannes-Hack-Schule Petersberg
- -
2014-2020
-
Mittelstufe: Marianum, Realschule und gymnasiale Oberstufe Fulda
- -
2020-2022
-
Fachoberschule: Konrad-Zuse-Schule Hünfeld
- -
2022-Heute
-
Ausbildung bei Computer L.A.N. GmbH und der Ferdinand Braun Schule in Fulda
-
-
-
-
-

Referenzen

- -
-
-
-

Kontakt

-

- Zur Spamvermeidung bitte die Daten im folgendem Format ersetzen (umlaute durch entsprechende Langform ersetzen ü -> ue): vorname@vorname-nachname.com -

-
- -
-
diff --git a/noise.png b/noise.png new file mode 100644 index 0000000..603946d Binary files /dev/null and b/noise.png differ diff --git a/style.css b/style.css new file mode 100644 index 0000000..20c86ad --- /dev/null +++ b/style.css @@ -0,0 +1,153 @@ +:root { + --height: 300px; + --width: 550px; +} + +body { + font-family: "Roboto"; + + background-image: url("background.svg"); + background-color: black; + background-repeat: no-repeat; + background-position: center; + background-size: cover; + + display: flex; + justify-content: center; + align-items: center; + + padding: 0; + margin: 0; + height: 100vh; + width: 100vw; +} + +.card-container { + width: var(--width); + height: var(--height); + perspective: 1000px; +} + +.card { + position: relative; + width: 100%; + height: 100%; + transition: transform 1s; + transform-style: preserve-3d; +} + +.card-container:hover .card, #flip:target { + transform: rotateX(180deg); +} + +.card .front, .card .back { + background-image: url("noise.png"); + background-repeat: repeat; + + position: absolute; + width: 100%; + height: 100%; + backface-visibility: hidden; + + border-radius: 10px; + background-color: white; +} + +.card .front { + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; +} + +.card .front img { + border-radius: 50%; + max-height: 200px; +} + +.card .front .name h1 { + text-align: left; + margin: 0 0 10px 0; + padding: 0; +} + +.card .front .name ul { + padding: 0 0 0 20px; + margin: 0; + list-style: square; +} + +.card .back { + transform: rotateX(180deg); + + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-evenly; +} + +.card .back ul { + list-style: none; + text-align: left; + padding: 0; + margin: 0; +} + +.card .back ul li { + margin: 5px 0; +} + +.card .back ul li i { + width: 20px; + margin-right: 10px; + text-align: center; +} + +.card .back .interests { + font-size: 1.5em; + letter-spacing: 0.3em; + line-height: 1.6em; + text-align: center; +} + +.card .flip-button { + position: absolute; + right: 0; + bottom: 0; + padding: 0 20px 10px 0; + + font-size: 1.5em; + color: gray; +} + +.mobile-visible { + visibility: visible; +} + +a { + font-style: normal; + text-decoration: none; + color: black; +} + +@media (hover: hover) { + .mobile-visible { + visibility: hidden; + } +} + +@media only screen and (max-width: 600px) { + :root { + --height: 550px; + --width: 300px; + } + .card .front, .card .back { + flex-direction: column; + } + .card-container:hover .card, #flip:target { + transform: rotateY(180deg); + } + .card .back { + transform: rotateY(180deg); + } +} diff --git a/tux.png b/tux.png new file mode 100644 index 0000000..eb33b20 Binary files /dev/null and b/tux.png differ