From 4d591f85f930b6f02e082c5104a74bc2becacb7b Mon Sep 17 00:00:00 2001 From: Kameshnic <150549652+Kameshnic@users.noreply.github.com> Date: Fri, 25 Oct 2024 18:00:12 +0530 Subject: [PATCH] Delete 097-terminal style landing page directory --- 097-terminal style landing page/index.html | 66 --------------- 097-terminal style landing page/script.js | 43 ---------- 097-terminal style landing page/style.css | 96 ---------------------- 3 files changed, 205 deletions(-) delete mode 100644 097-terminal style landing page/index.html delete mode 100644 097-terminal style landing page/script.js delete mode 100644 097-terminal style landing page/style.css diff --git a/097-terminal style landing page/index.html b/097-terminal style landing page/index.html deleted file mode 100644 index 3b0c82b..0000000 --- a/097-terminal style landing page/index.html +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - Terminal - - -
- -
-

dtaggart:$|

-

Find me online:

- -
-
- - - - - diff --git a/097-terminal style landing page/script.js b/097-terminal style landing page/script.js deleted file mode 100644 index 10e8a89..0000000 --- a/097-terminal style landing page/script.js +++ /dev/null @@ -1,43 +0,0 @@ -const about = document.querySelector("#about"); -const contact = document.querySelector("#contact"); -const aboutContent = document.querySelector("#about-content"); -const contactContent = document.querySelector("#contact-content"); - -about.addEventListener("click", () => { - const aboutBox = new WinBox({ - title: "About Me", - // modal: true, - width: "400px", - height: "400px", - top: 50, - right: 50, - bottom: 50, - left: 50, - mount: aboutContent, - onfocus: function () { - this.setBackground("var(--text-color)"); - }, - onblur: function () { - this.setBackground("#777"); - }, - }); -}); - -contact.addEventListener("click", () => { - const contactBox = new WinBox({ - title: "Contact Me", - width: "400px", - height: "400px", - top: 100, - right: 50, - bottom: 50, - left: 150, - mount: contactContent, - onfocus: function () { - this.setBackground("var(--text-color)"); - }, - onblur: function () { - this.setBackground("#777"); - }, - }); -}); diff --git a/097-terminal style landing page/style.css b/097-terminal style landing page/style.css deleted file mode 100644 index 5dd1dc3..0000000 --- a/097-terminal style landing page/style.css +++ /dev/null @@ -1,96 +0,0 @@ -@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;700&display=swap"); - -* { - box-sizing: border-box; - padding: 0; - margin: 0; -} - -:root { - --text-color: #00aa00; -} - -body { - font-family: "Roboto Mono", sans-serif; - background-color: #333; - color: #ccc; - font-size: 18px; - line-height: 1.6; -} - -.container { - max-width: 600px; - margin: auto; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - min-height: 100vh; -} - -ul { - list-style-type: none; -} - -nav { - width: 40%; -} - -nav ul { - display: flex; - justify-content: space-around; - align-items: center; -} - -nav ul li { - color: var(--text-color); - cursor: pointer; -} - -h1 { - color: var(--text-color); - font-size: 50px; - letter-spacing: -5px; - margin-bottom: 20px; -} - -h2 { - color: var(--text-color); -} - -h3 { - margin-bottom: 10px; -} - -a { - color: var(--text-color); - text-decoration: none; -} - -.hidden { - display: none; -} - -.wb-body { - background-color: #111; - padding: 20px; -} - -p { - margin: 20px 0; -} - -.cursor { - font-weight: 700; - animation: 1s blink step-end infinite; -} - -@keyframes blink { - from, - to { - color: transparent; - } - 50% { - color: var(--text-color); - } -}