Updated logo

This commit is contained in:
squidfunk 2021-02-15 16:25:09 +01:00
parent 356cde2ad8
commit 4273f3dce8

View File

@ -3,21 +3,32 @@
<div xmlns="http://www.w3.org/1999/xhtml"> <div xmlns="http://www.w3.org/1999/xhtml">
<style> <style>
@keyframes backdrop { @keyframes backdrop {
0%, 0% {
100% { transform: scale(0.9) rotateZ(45deg);
transform: scale(0.9);
opacity: 0.1; opacity: 0.1;
} }
50% { 10% {
transform: scale(1); opacity: 1;
}
15% {
transform: scale(1.1) rotateZ(35deg);
}
50% {
transform: scale(1) rotateZ(0deg);
} }
15%,
75% { 75% {
transform: scale(1.1); transform: scale(1.1) rotateZ(-35deg);
opacity: 1; opacity: 1;
} }
100% {
transform: scale(0.9) rotateZ(-45deg);
opacity: 0.1;
}
} }
.container { .container {
@ -51,7 +62,7 @@
position: absolute; position: absolute;
width: 100%; width: 100%;
height: 100%; height: 100%;
background-image: linear-gradient(#1A1A1A, #5E5E5E); background-image: linear-gradient(#1A1A1A, #3D437D);
border-radius: 100%; border-radius: 100%;
animation: backdrop infinite both 10s 1s cubic-bezier(0.7, 0, 0.3, 1); animation: backdrop infinite both 10s 1s cubic-bezier(0.7, 0, 0.3, 1);
} }

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 8.0 KiB