aboutsummaryrefslogtreecommitdiff
path: root/static/@solitude/css/welcome/welcome.css
diff options
context:
space:
mode:
authorBobby <[email protected]>2023-09-23 01:42:29 -0400
committerBobby <[email protected]>2023-09-23 01:42:29 -0400
commit8b6812816f0610f0942cfcd4eb70333b1a8e8a3f (patch)
tree184c97135df67d202fe24681423ffa25ba642d73 /static/@solitude/css/welcome/welcome.css
parentee777e041132206014b6be397d7c8d9a1d015265 (diff)
downloadthatcomputerscientist-8b6812816f0610f0942cfcd4eb70333b1a8e8a3f.tar.xz
thatcomputerscientist-8b6812816f0610f0942cfcd4eb70333b1a8e8a3f.zip
Removed Solitude + Refactor
Diffstat (limited to 'static/@solitude/css/welcome/welcome.css')
-rw-r--r--static/@solitude/css/welcome/welcome.css94
1 files changed, 0 insertions, 94 deletions
diff --git a/static/@solitude/css/welcome/welcome.css b/static/@solitude/css/welcome/welcome.css
deleted file mode 100644
index b4fcde6c..00000000
--- a/static/@solitude/css/welcome/welcome.css
+++ /dev/null
@@ -1,94 +0,0 @@
-/*
- Shifoo's Solitude by Bobby
- --------------------------
- Shifoo's Solitude is a Web Dungeon located beyond the Dark Hollows of the Endless Information SuperHighway — a dark yet tranquil place where all questions end, curiosity begins, the mind awakens, and one's journey begins anew in the solitude of a serene mind!
- --------------------------
-
- File: welcome.css
- Description: CSS for the welcome page (exclusively)
- Date: Jul 11, 2023
- Last Modified: Jul 11, 2023
-*/
-@import url("https://fonts.googleapis.com/css2?family=Handlee&family=Poppins:wght@400&family=Share:wght@700&display=swap");
-@import url(audio.css);
-@import url(button.css);
-@import url(glitch.css);
-:root {
- --button-height: 0.5rem;
- --button-color: #edd;
- color-schema: dark;
- font-family: "Handlee", cursive;
-}
-
-* {
- margin: 0;
- padding: 0;
- color: white;
-}
-
-#cover-video {
- position: fixed;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- object-fit: cover;
- z-index: -100;
-}
-
-#cover-wrapper {
- position: fixed;
- top: 0;
- left: 0;
- min-width: 100%;
- min-height: 100%;
- height: 100%;
- width: 100%;
- z-index: -99;
-}
-
-#welcome-content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- min-height: 100vh;
- background: repeating-linear-gradient(
- 0deg,
- #0e0d0e77 25%,
- #0e0d0e77 50%,
- #17181977 50%,
- #17181977 75%
- );
- background-size: 10px 10px;
-}
-
-.cwrapper {
- text-align: center;
-}
-
-p {
- margin: 0;
- padding: 0;
-}
-
-.small {
- font-size: 0.8rem;
- margin: 0.5rem 0;
- color: #aaa;
-}
-
-#welcome-button {
- font-family: "Poppins", sans-serif;
- font-size: 1.5rem;
- padding: 0.5rem 1rem;
- border-radius: 0.5rem;
- transition: all 0.2s ease-in-out;
- margin-top: 10rem;
-}
-
-@media only screen and (max-width: 600px) {
- .glitch {
- font-size: 5rem;
- }
-}