Update logo

This commit is contained in:
squidfunk 2023-02-26 17:40:20 +01:00
parent 402835e930
commit 920b9130fb

View File

@ -3,80 +3,80 @@
<div xmlns="http://www.w3.org/1999/xhtml"> <div xmlns="http://www.w3.org/1999/xhtml">
<style> <style>
@keyframes backdrop { @keyframes backdrop {
0% { 0% {
transform: scale(0.9) rotateZ(45deg); transform: scale(0.9) rotateZ(45deg);
opacity: 0.1; opacity: 0.1;
} }
10% { 10% {
opacity: 1; opacity: 1;
} }
15% { 15% {
transform: scale(1.1) rotateZ(35deg); transform: scale(1.1) rotateZ(35deg);
} }
50% { 50% {
transform: scale(1) rotateZ(0deg); transform: scale(1) rotateZ(0deg);
} }
75% { 75% {
transform: scale(1.1) rotateZ(-35deg); transform: scale(1.1) rotateZ(-35deg);
opacity: 1; opacity: 1;
} }
100% { 100% {
transform: scale(0.9) rotateZ(-45deg); transform: scale(0.9) rotateZ(-45deg);
opacity: 0.1; opacity: 0.1;
} }
} }
.container { .container {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
width: 320px; width: 320px;
height: 320px; height: 320px;
font-family: font-family:
system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial,
sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
letter-spacing: -1px; letter-spacing: -1px;
border-radius: 2px; border-radius: 2px;
} }
.logo { .logo {
position: relative; position: relative;
width: 40%; width: 40%;
} }
.logo svg { .logo svg {
position: relative; position: relative;
display: block; display: block;
margin: 20%; margin: 20%;
fill: #FFFFFF; fill: #FFFFFF;
} }
.backdrop { .backdrop {
position: absolute; position: absolute;
width: 100%; width: 100%;
height: 100%; height: 100%;
background-image: linear-gradient(#1A1A1A, #526cfe); background-image: linear-gradient(#22272e, #526cfe);
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);
} }
h1 { h1 {
margin: 24px 0 4px; margin: 24px 0 4px;
color: #526cfe; color: #526cfe;
font-weight: bold; font-weight: bold;
font-size: 24px; font-size: 24px;
} }
h2 { h2 {
margin: 4px 0; margin: 4px 0;
color: #5E5E5E; color: #5E5E5E;
font-size: 14px; font-size: 14px;
} }
</style> </style>

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 8.0 KiB