-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
41 lines (41 loc) · 973 Bytes
/
style.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
body{
margin: 0;
}
canvas{
z-index: -1;
top: 0;
display: block;
position: fixed;
width: 100%;
height: 100%;
background: #020202;
}
#watchads{
background-color: rgb(213, 131, 0);
border: 0px;
border-radius:5px ;
padding: 10px;
position: fixed;
z-index: 1000;
margin-top: 100px;
text-decoration-color:transparent;
text-transform: uppercase;
animation: bounce 0.5s infinite;
text-decoration: none;
color: black;
top: 60%;
left: 5%;
}
@keyframes bounce{
0%{
transform: translateY(0);
transform: translateX(0);
}
50%{
transform: translateY(-20px);
transform: rotateX('20deg');
}
100%{
transform: translateY(0);
}
}