-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
101 lines (82 loc) · 1.56 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
.left {
float: left;
margin-left: 5px;
}
.right {
float: right;
margin-right: 5px;
}
body {
background: linear-gradient(to right, red, white, blue);
overflow-x: hidden;
}
h1 {
text-align: center;
transform: rotate(1deg);
}
h2 {
text-align: center;
transform: rotate(1deg);
}
h3 {
text-align: center;
transform: rotate(1deg);
}
p {
text-align: center;
transform: rotate(1deg);
}
.lul {
animation: spin 100s linear infinite;
}
.fug {
animation: crash 1s linear infinite;
filter: drop-shadow 4px;
}
footer {
display: inline-block;
position: fixed;
right: 0;
bottom: 0;
left: 0;
padding: 1rem;
}
oman {
display: inline-block;
animation: oman 0.1s linear infinite;
}
@keyframes oman {
0%, 100% {}
50% {transform: translate(0, 0.2em);}
}
blocc {
display: inline-block;
}
lol {
display: inline-block;
transform-origin: 50% 50%;
animation: spin 400s linear infinite;
}
.benis {
transform-origin: 50% 50%;
animation: spin 4s linear infinite, wow 4s linear infinite;
}
.haha {
transform-origin: 50% 50%;
animation: spin 512s linear infinite;
}
@keyframes spin { 100% {transform: rotate(360deg);}}
@keyframes crash { 100% {transform: rotate(360deg) rotateX(210deg); filter: blur(10px);}}
@keyframes wow { 50% {transform: scale(0.5) translate(0, 10em)} 100% {transform: scale(2);}}
iframe {
width: 0px !important;
height: 0px !important
}
.bannerFrame {
position: absolute;
width: 336px !important;
height: 566px !important;
z-index: 15;
left: 50%;
margin: 0px 0 0 -168px;
}