aboutsummaryrefslogtreecommitdiff
path: root/static/@solitude/css/welcome/welcome.css
blob: b4fcde6cc71cd7e95314caa0a965be65e79f22d6 (plain)
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
/*
    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;
  }
}