-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
executable file
·194 lines (160 loc) · 3.89 KB
/
main.css
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
@import url('//fonts.googleapis.com/css2?family=Unbounded:wght@300&display=swap');
:root {
color: white;
}
.bg-scrolling {
width: 150%;
height: 150%;
margin-top: -10%;
margin-left: -10%;
position: fixed;
background-color: #000000;
background-size: 60px 60px;
background-image: linear-gradient(to right, grey 1px, transparent 1px), linear-gradient(to bottom, grey 1px, transparent 1px);
background-repeat: repeat;
animation-name: bg-scroll;
animation-duration: 16s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
.bg-error {
width: 250%;
height: 250%;
margin-top: -20px;
margin-left: -20px;
position: fixed;
background-color: #eee;
background-size: 90px 90px;
background-image: linear-gradient(to left, grey 4px, transparent 1px), linear-gradient(to top, grey 4px, transparent 1px);
background-repeat: repeat;
animation-name: bg-scroll;
animation-duration: 16s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
.bg-cross {
transform: rotate(0deg);
width: 200%;
height: 200%;
margin-left: -75%;
margin-top: -75%;
position: fixed;
background-color: #000000;
background-size: 60px 60px;
background-image: linear-gradient(to right, grey 1px, transparent 1px), linear-gradient(to bottom, grey 1px, transparent 1px);
background-repeat: repeat;
animation-name: bg-scroll-rev;
animation-duration: 16s;
animation-iteration-count: infinite;
animation-timing-function: linear;
mask-image: url("close.png");
mask-size: cover;
transition-property: transform;
transition-duration: 1s;
}
.bg-cross:hover{
transform: rotate(45deg);
}
.bg-circle {
margin-top: -12.5%;
height: 135%;
aspect-ratio: 1 / 1;
border: 5px solid white;
border-radius: 50%;
display: inline-block;
position: fixed;
}
.bg-halftone {
--stop1: 0.06rem;
--stop2: 0.65rem;
--dotSize: 0.25rem;
--bgSize: 1.35rem;
--bgPosition: calc(var(--bgSize) / 2);
}
.bg-halftone::after {
content: '';
position: fixed;
top: -5%;
left: -5%;
width: 110%;
height: 110%;
background-image: radial-gradient(circle at center,
#409078 var(--dotSize),
transparent 0);
background-size: 1.3rem 1.3rem;
mask-image: radial-gradient(ellipse at bottom right, rgb(0 0 0), rgb(255 255 255 / 0) 50%, rgb(255 255 255 / 0) );
}
@keyframes bg-scroll-rev {
0% {
background-position: 0px 0px;
}
100%{
background-position: 240px 240px
}
}
@keyframes bg-scroll {
0% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(-240px, -240px, 0);
}
}
html, span {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px
}
.content {
position:fixed;
height: 100%;
width: 100%;
top: 0;
bottom: 0;
}
.pagetitle {
font-family: "Unbounded";
font-optical-sizing: auto;
font-size: 50px;
font-style: normal;
margin-top: 40px;
text-align: center;
filter: drop-shadow(5px 5px 1.35rem white);
}
.mymusic {
background-image: url("OldPFP.jpg");
background-size: 150px 150px;
margin-top: calc(49% - 75px);
margin-left: calc(49% - 75px);
height: 150px;
width: 150px;
transition-property: width height background-size margin-top margin-left;
transition-duration: 0.5s;
transition-timing-function: ease-in-out;
}
.mymusic:hover {
height: 300px;
width: 300px;
background-size: 300px 300px;
margin-top: calc(49% - 150px);
margin-left: calc(49% - 150px);
}
.redirector {
position: absolute;
background-image: url("IMG_1970.jpeg");
background-size: 100% 100%;
margin-left: -5%;
margin-top: -5%;
height: 120%;
width: 120%;
filter: brightness(1) contrast(1) invert(0) saturate(1);
transition-property: filter;
transition-duration: 1s;
}
.redirector:hover {
filter: brightness(3) contrast(3) invert(1) saturate(0.8);
}
.strange-version-number {
font-size: 10px;
position: fixed;
margin-top: calc(100% - 10px);
}