18 lines
452 B
HTML
18 lines
452 B
HTML
<style>
|
|
@keyframes gradientShift {
|
|
0% { background-position: 0% 50%; }
|
|
50% { background-position: 100% 50%; }
|
|
100% { background-position: 0% 50%; }
|
|
}
|
|
#gradient-bg {
|
|
position: fixed;
|
|
top: 0; left: 0;
|
|
width: 100%; height: 100%;
|
|
z-index: 1;
|
|
background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #1a1a2e, #16213e);
|
|
background-size: 400% 400%;
|
|
animation: gradientShift 20s ease infinite;
|
|
}
|
|
</style>
|
|
<div id="gradient-bg"></div>
|