commit 523220ce0740c087fb1e78bb03b207b61d861149 Author: Marcelina Szostak Date: Fri Apr 11 17:08:26 2025 +0200 Initial commit diff --git a/index.html b/index.html new file mode 100644 index 0000000..a7ed015 --- /dev/null +++ b/index.html @@ -0,0 +1,25 @@ + + + + + + + twoplusgoo.de + + + + logo +



+
+

Page is under development and it is very underdeveloped yet.

+
+ + + + + diff --git a/resources/bg/page_background.png b/resources/bg/page_background.png new file mode 100644 index 0000000..37f9a1e Binary files /dev/null and b/resources/bg/page_background.png differ diff --git a/resources/fonts/RetroWild.otf b/resources/fonts/RetroWild.otf new file mode 100644 index 0000000..e530942 Binary files /dev/null and b/resources/fonts/RetroWild.otf differ diff --git a/resources/fonts/WinkyRough-VariableFont_wght.ttf b/resources/fonts/WinkyRough-VariableFont_wght.ttf new file mode 100644 index 0000000..daccb65 Binary files /dev/null and b/resources/fonts/WinkyRough-VariableFont_wght.ttf differ diff --git a/resources/logo/page_logo.png b/resources/logo/page_logo.png new file mode 100644 index 0000000..41b165e Binary files /dev/null and b/resources/logo/page_logo.png differ diff --git a/style.css b/style.css new file mode 100644 index 0000000..ac89e15 --- /dev/null +++ b/style.css @@ -0,0 +1,57 @@ +@font-face { + font-family: winky; + src: url('resources/fonts/WinkyRough-VariableFont_wght.ttf'); +} + +@font-face { + font-family: retrowild; + src: url('resources/fonts/RetroWild.otf'); +} + +body { + background-image: url('./resources/bg/page_background.png'); + display: flex; + flex-direction: column; + min-height: 100vh; +} + +.logotyp { + display: block; + margin-left: auto; + margin-right: auto; + width: 60%; +} + +.stopka { + font-family: retrowild; + font-size: 350%; + text-align: center; + margin-top: auto; + margin-bottom: 5%; +} + +.klik { + margin-left: 2%; + margin-right: 2%; +} + +.klik:hover { + color: #3e5a4a; +} + +p { + text-align: left; +} + +div { + padding: 3%; + text-align: center; + font-family: winky; + font-size: 200%; + text-shadow: 0 0 1px; + border-radius: 25px; + border-style: dashed; + border-width: 10px; + background-color: #e5d8c3C9; + margin-top: 10%; +}