-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
134 lines (124 loc) · 2.72 KB
/
style.css
File metadata and controls
134 lines (124 loc) · 2.72 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400;500;600;700&display=swap');
/* font-family: "Alkatra", cursive; */
html, body {
margin: 0;
padding: 0;
height: 100%;
overflow-x: hidden;
-ms-word-wrap: break-word;
word-wrap: break-word;
scroll-behavior: smooth;
}
* {
box-sizing: border-box;
}
html {
background-color: #793a80;
/*
background: linear-gradient(219.46deg, #110036 27.63%, #170059 100%),
linear-gradient(219.46deg, #FFFFFF 27.63%, #19004E 100%),
radial-gradient(100% 246.94% at 100% 100%, #FFFFFF 0%, #000353 100%),
linear-gradient(121.18deg, #1400FF 0.45%, #3A0000 100%),
linear-gradient(192.86deg, #F06060 9.22%, #008B7A 87.25%),
linear-gradient(150.76deg, #0015D5 15.35%, #000B6C 89.57%);
background-blend-mode: screen, overlay, overlay, difference, difference, normal;
*/
background-image: url(elegant-rainbow.png);
/* gradient from https://codioful.com/elegant-rainbow */
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
}
body {
font-family: "Alkatra", cursive;
color: white;
text-align: center;
}
.baseURL:link {
text-decoration: none;
color: white;
}
.baseURL:hover {
text-decoration: none;
color: #bbb;
}
.baseURL:active {
text-decoration: none;
color: #793a80;
}
.baseURL:visited {
text-decoration: none;
color: white;
}
.main {
width: 900px;
max-width: 100%;
margin: 0 auto;
padding: 250px 0;
}
.text {
margin: auto;
width: max-content;
max-width: 100%;
background-color: #ffffff40;
padding: 5px 20px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-webkit-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
}
#wait {
z-index: 1;
width: 100%;
height: 100%;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
background-color: #793a80;
background-image: url(elegant-rainbow.png);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
-webkit-transition: 1.25s;
-moz-transition: 1.25s;
-o-transition: 1.25s;
transition: 1.25s;
}
#spinner {
width: 70px;
max-width: 100%;
height: auto;
}
/* RESPONSIVE */
@media (prefers-color-scheme: dark) {
.text {
background-color: #00000040;
}
}
/* SITE-WIDE RESPONSIVE LAYOUTS */
/* inherited from ReactOSPH/ReactSquad */
@media screen and (min-width: 768px) {
body {
font-size: large;
}
}
@media screen and (min-width: 1080px) {
body {
font-size: larger;
}
}
@media screen and (min-width: 1440px) {
body {
font-size: x-large;
}
}
@media screen and (min-width: 2160px) {
body {
font-size: xx-large;
}
}