From 72adc0a30e71feb84e1e375b7c060add13ccaca7 Mon Sep 17 00:00:00 2001 From: Spectral Hackers Guild Date: Mon, 23 Sep 2024 22:51:44 -0600 Subject: [PATCH] Delete stylesheet.css --- stylesheet.css | 107 ------------------------------------------------- 1 file changed, 107 deletions(-) delete mode 100644 stylesheet.css diff --git a/stylesheet.css b/stylesheet.css deleted file mode 100644 index 45fa2e1..0000000 --- a/stylesheet.css +++ /dev/null @@ -1,107 +0,0 @@ -body { - font-family: 'Times New Roman', serif; - background-color: #1c1c1c; - color: #fff; - margin: 0; - padding: 0; - overflow-x: hidden; - margin-top: 150px; - margin-bottom: 150px; -} - -header { - background-color: rgba(58, 58, 58, 0.8); - padding: 5px; - text-align: center; - position: fixed; - width: 100%; - top: 0; - z-index: 1000; - transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out; -} - -footer { - background-color: rgba(58, 58, 58, 0); - padding: 5px; - text-align: center; - position: fixed; - width: 100%; - bottom: 0; - transition: background-color 0.3s ease-in-out, opacity 0.5s ease-in-out; - opacity: 0; -} - -nav { - display: flex; - justify-content: center; - margin-top: 20px; -} - -nav a { - color: #9af5f0; - text-decoration: none; - padding: 10px 20px; - margin: 0 10px; - border-bottom: 2px solid transparent; - transition: border-bottom-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; -} - -nav a:hover { - border-bottom-color: #5FE9E5; - box-shadow: 0 0 10px rgba(214, 92, 140, 0.8); -} - -.neon-text { - text-shadow: 0 0 10px #81fcc9, 0 0 200px #53f9ae, 0 0 300px #29e791; -} - -.neon-texth2 { - text-shadow: 0 0 5px #5FE9E5, 0 0 10px #5FE9E5, 0 0 300px #5FE9E5, 0 0 20px #5FE9E5; -} - -.neon-text-mtr { - text-shadow: 0 0 10px #5FE9E5, 0 0 20px #5FE9E5, 0 0 30px #5FE9E5; -} - -.neon-text-derechos-de-autor { - text-shadow: 0 0 15px #5FE9E5, 0 0 10px #5FE9E5, 0 0 15px #5FE9E5; -} - -.ornamento { - position: absolute; - height: 100%; - width: 50px; - background-color: #3a3a3a; -} - -.ornamento.izquierdo { - left: 0; -} - -.ornamento.derecho { - right: 0; -} - -.content { - max-width: 800px; - margin: 25px auto 40px; - padding: 20px; - background-color: #2b2b2b; - border: 1px solid #3a3a3a; - box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); - border-radius: 1%; - opacity: 0; - transform: translateY(50px); - transition: opacity 0.6s ease-out, transform 0.6s ease-out; -} - -.content.show { - opacity: 1; - transform: translateY(0); -} - -section.active { - background-color: #1A0330; - border-color: #1A0330; - box-shadow: 0 0 15px rgba(0, 0, 0, 0.8); -}