-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
33 lines (29 loc) · 1010 Bytes
/
style.css
File metadata and controls
33 lines (29 loc) · 1010 Bytes
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
:root,html{
height: 100%;
}
body{
margin: 0px;
display: flex;
justify-content: center;
align-items: center;
width: auto;
height: 100%;
background: #000;
}
@keyframes backgroundzen{
50%{box-shadow: rgba(255, 0, 255, 0.5) 2px 0px 2px, rgba(0, 255, 191, 0.5) -2px 0px 2px, rgb(49, 122, 255) 0px 0px 10px,0px 10px 100px #663399;}
}
@-webkit-keyframes backgroundzen{
50%{box-shadow: rgba(255, 0, 255, 0.5) 2px 0px 2px, rgba(0, 255, 191, 0.5) -2px 0px 2px, rgb(49, 122, 255) 0px 0px 10px,0px 10px 100px #663399;}
}
#app{
image-rendering: pixelated;
max-width: 500px;
max-height: 500px;
cursor: none;
filter: contrast(200%) sepia(22%);
animation: 10s backgroundzen infinite steps(28);
-webkit-animation: 10s backgroundzen infinite steps(28);
box-shadow: rgba(255, 0, 255, 0.5) 2px 0px 2px, rgba(0, 255, 191, 0.5) -2px 0px 2px, rgb(49, 122, 255) 0px 0px 10px,0px 5px 20px purple;
border-radius: 1rem;
}