From 24f0d2493440a20d2bc46fcac60176611764ec27 Mon Sep 17 00:00:00 2001 From: wfxey <158351052+wfxey@users.noreply.github.com> Date: Wed, 7 Aug 2024 20:48:28 +0200 Subject: [PATCH] =?UTF-8?q?Delete=20gesch=C3=A4ftsm=C3=A4=C3=9Fig=20direct?= =?UTF-8?q?ory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../index.html" | 64 --- .../style_profit.css" | 383 ------------------ 2 files changed, 447 deletions(-) delete mode 100644 "gesch\303\244ftsm\303\244\303\237ig/index.html" delete mode 100644 "gesch\303\244ftsm\303\244\303\237ig/style_profit.css" diff --git "a/gesch\303\244ftsm\303\244\303\237ig/index.html" "b/gesch\303\244ftsm\303\244\303\237ig/index.html" deleted file mode 100644 index 09c2da4..0000000 --- "a/gesch\303\244ftsm\303\244\303\237ig/index.html" +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - D&I - Geschäftsmäßig - - - - - - - - - - - - - - - - - -
-
- -
-
-
-

Geschäftsmäßig

-

The projects on GitHub under D&I Projects are deliberately developed as open source and non-commercial.

-

They are intended solely for educational and informational purposes. Our goal is to promote knowledge and impart practical skills without pursuing commercial interests.

-

We believe in free access to knowledge and technology for everyone, regardless of financial or business motives.

-

Through this approach, we aim to support an open and collaborative community dedicated to the improvement and advancement of technology.

- -
- - - \ No newline at end of file diff --git "a/gesch\303\244ftsm\303\244\303\237ig/style_profit.css" "b/gesch\303\244ftsm\303\244\303\237ig/style_profit.css" deleted file mode 100644 index 6152938..0000000 --- "a/gesch\303\244ftsm\303\244\303\237ig/style_profit.css" +++ /dev/null @@ -1,383 +0,0 @@ -:root { - --bg-color: #1a1a1a; - --text-color: #f0f0f0; - --header-color: #f0f0f0; - --primary-color: #333; - --secondary-color: #2a2a2a; - --border-color: #555; - --hover-bg-color: #444; - --link-color: #ffffff; - --link-hover-color: #ddd; - --table-alt-row-color: #333; - --button-color: #f0f0f0; - --light-pic : none; - --dark-pic : block; - --box-color-text : rgb(0, 0, 0); - --box-color : white; - --button-color-reverse: #1a1a1a; - --table-background-color: #1a1a1a; - --table-header-background-color: #2a2a2a; - --table-header-text-color: #f0f0f0; - --table-row-even-background-color: #333; - --table-row-hover-background-color: #444; -} - -body { - font-family: Arial, Helvetica, sans-serif; - background-color: var(--bg-color); - margin: 0; - padding: 0; - display: flex; - height: 105vh; - box-sizing: border-box; - color: var(--text-color); - position: relative; - overflow-x: hidden; -} - -.cookie-banner { - position: fixed; - left: 25px; - bottom: 25px; - width: 400px; - padding: 25px; - background-color: rgb(1, 0, 0, 0.9); - border-radius: 15px; - color: white; - z-index: 9999; - display: none; -} - -.cookie-content { - max-width: 600px; - margin: 0 auto; - text-align: center; -} - -.cookie-content p { - margin-bottom: 10px; -} - -.button_accept { - background-color: #ffffff; - color: rgb(0, 0, 0); - border: none; - padding: 10px 20px; - cursor: pointer; - border-radius: 15px; -} - -.button_leave { - background-color: hsl(0, 85%, 37%); - color: rgb(255, 255, 255); - border: none; - padding: 10px 20px; - cursor: pointer; - border-radius: 15px; -} - -.button_accept:hover { - background-color: #c9c9c9; -} - -.button_leave:hover { - background-color: #751414; -} - -section p { - margin: 0.625rem 0; - line-height: 1.6; - color: var(--text-color); -} - -b { - line-height: 1.6; - color: var(--text-color); -} - - - -pre { - background-color: #282c34; - color: #abb2bf; - border-radius: 10px; - padding: 10px; - overflow-x: auto; - font-family: 'Courier New', Courier, monospace; - line-height: 1.5; - margin: 20px 0; -} - -code { - background-color: #3e4451; - color: #e06c75; - padding: 2px 4px; - border-radius: 10px; - font-family: 'Courier New', Courier, monospace; -} - -pre code { - background: transparent; - color: inherit; - padding: 0; - border: none; - border-radius: 10px; -} - -.light-mode-btn { - position: fixed; - top: 16px; - right: 14px; - background: var(--secondary-color); - border: none; - padding: 10px; - border-radius: 50%; - cursor: pointer; - display: flex; - align-items: center; - justify-content: center; - box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); - transition: background 0.3s ease, box-shadow 0.3s ease; - z-index: 1000; -} - -::-webkit-scrollbar { - width:0px; -} - -.topbar { - position: fixed; - top: 0; - width: 100%; - background-color: var(--bg-color); - box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); - z-index: 1000; - display: flex; - align-items: center; - justify-content: space-between; - height: 75px; - padding: 0 20px; -} - -.topbar .logo { - font-size: 1.5rem; - color: var(--header-color); - font-weight: bold; - text-decoration: none; - pointer-events: none; -} - -.topbar nav { - display: flex; - align-items: center; - gap: 10px; - width: 100%; -} - -.topbar nav a { - color: var(--header-color); - text-decoration: none; - font-weight: bold; - transition: color 0.3s ease; -} - -.topbar nav a:hover { - color: var(--link-hover-color); -} - -.topbar .action-buttons { - display: flex; - align-items: center; - gap: 10px; -} - -.topbar button { - top: 16px; - background: var(--secondary-color); - border: none; - padding: 10px; - border-radius: 15px; - cursor: pointer; - display: flex; - align-items: center; - justify-content: center; - box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); - transition: background 0.3s ease, box-shadow 0.3s ease; - z-index: 1000; - color: var(--button-color); -} - -.topbar button:hover { - background: var(--hover-bg-color); - box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15); -} - -.topbar button:focus { - outline: none; - box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2); -} - -.page-content { - display: flex; - flex-direction: column; - justify-content: flex-start; - align-items: center; - width: 100%; - height: calc(100% - 75px); - padding-top: 75px; - box-sizing: border-box; - position: relative; -} - - -.page-content button { - margin: 6px; - background: var(--secondary-color); - border: none; - padding: 10px; - border-radius: 15px; - cursor: pointer; - width: 230px; - display: flex; - align-items: center; - justify-content: center; - box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); - transition: background 0.3s ease, box-shadow 0.3s ease; - z-index: 1000; - color: var(--button-color); -} - -.page-content button:hover { - background: var(--hover-bg-color); - box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15); -} - -footer { - display: block; - background-color: var(--bg-color); - color: var(--text-color); - padding: 20px 0; - position: absolute; - width: 100%; - bottom: -28px; -} - -.footer-container { - display: flex; - justify-content: space-between; - max-width: 1200px; - margin: 0 auto; - padding: 0 20px; -} - -.footer-left, .footer-right { - display: flex; - gap: 15px; -} - -.footer-left a, .footer-right a { - color: var(--text-color); - text-decoration: none; - transition: color 0.3s ease; -} - -.footer-left a:hover, .footer-right a:hover { - color: #ddd; -} - -.top-pic-dark { - display: var(--dark-pic); - height: 65px; -} - -.top-pic-light { - display: var(--light-pic); - height: 65px; -} - -.light-mode-btn i { - color: var(--header-color); - font-size: 1.2rem; -} - -.light-mode-btn:hover { - background: var(--hover-bg-color); - box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15); -} - -.light-mode-btn .fa-sun { - display: none; -} - -body.light-mode .light-mode-btn .fa-moon { - display: none; -} - -body.light-mode .light-mode-btn .fa-sun { - display: block; -} - -.search-container { - width: 250px; - position: relative; - margin-bottom: 20px; -} - -#search-bar { - width: 100%; - padding: 10px; - border: 0.5px solid var(--border-color); - border-radius: 20px; - background-color: var(--button-color-reverse); - color: var(--text-color); - box-sizing: border-box; -} - -#suggestions-box { - position: absolute; - top: calc(100% + 5px); - left: 0; - width: 100%; - background: var(--bg-color); - border-radius: 0 0 20px 20px; - max-height: 200px; - overflow-y: auto; - display: none; - z-index: 1000; -} - -.suggestion { - padding: 10px; - border-bottom: 0.5px solid var(--border-color); - cursor: pointer; - color: var(--text-color); -} - -.suggestion:last-child { - border-bottom: none; -} - -.suggestion:hover { - background-color: var(--hover-bg-color); -} - -@media only screen and (max-width: 495px) { - .cookie-banner { - position: fixed; - border-radius: 0px; - bottom: 0; - left: 0; - width: 100%; - background-color: rgb(1, 0, 0, 0.9); - color: white; - padding: 20px 0; - z-index: 9999; - display: none; - } -} - -@media only screen and (max-width: 470px) { - .footer-left { - display:none; - } -}