1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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;
}
|