forked from sent/waves
27 lines
590 B
CSS
27 lines
590 B
CSS
/*
|
|
|
|
GBA ONLINE; GBA.JS.ORG; "Online GameBoy Advance Emulator"
|
|
Copyright (C) 2021-present AYVACS
|
|
Licensed under the MIT License (view LICENSE.md for more information)
|
|
|
|
*/
|
|
|
|
#particles-js canvas {
|
|
display: block;
|
|
vertical-align: bottom;
|
|
-webkit-transform: scale(1);
|
|
-ms-transform: scale(1);
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
-webkit-transition: opacity .8s ease, -webkit-transform 1.4s ease;
|
|
transition: opacity .8s ease, transform 1.4s ease
|
|
}
|
|
|
|
#particles-js {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
z-index: -10;
|
|
top: 0;
|
|
left: 0
|
|
} |