9 lines
140 B
CSS
9 lines
140 B
CSS
body::after {
|
|
position: fixed;
|
|
content: '';
|
|
left: -1000px;
|
|
top: -1000px;
|
|
animation: shadow-preload 0.1s;
|
|
animation-delay: 3s;
|
|
}
|