aboutsummaryrefslogtreecommitdiff
path: root/static/@solitude/css/welcome/welcome.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/@solitude/css/welcome/welcome.css')
-rw-r--r--static/@solitude/css/welcome/welcome.css98
1 files changed, 98 insertions, 0 deletions
diff --git a/static/@solitude/css/welcome/welcome.css b/static/@solitude/css/welcome/welcome.css
new file mode 100644
index 00000000..22a1a747
--- /dev/null
+++ b/static/@solitude/css/welcome/welcome.css
@@ -0,0 +1,98 @@
+/*
+ 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);
+: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%;
+ background-color: rgba(0, 0, 0, 0.15);
+ z-index: -99;
+}
+
+#welcome-content {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ min-height: 100vh;
+}
+
+.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;
+}
+
+.description {
+ font-family: "Share", sans-serif;
+ font-size: 1rem;
+ margin-top: -4rem;
+ letter-spacing: 0.1rem;
+}
+
+.text-box {
+ font-family: "Share", cursive;
+}
+
+.text-box > h1 {
+ margin: 0;
+ font-size: 10rem;
+ color: rgb(255 255 255 / 60%);
+ padding: .5em;
+}
+