mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
20 lines
455 B
HTML
20 lines
455 B
HTML
<div class="one-div"></div>
|
|
<style>
|
|
/* From Uiverse.io by Dalyn-Liu - Tags: challenge, copy, border, box-shadow */
|
|
.one-div {
|
|
width: 50px;
|
|
height: 50px;
|
|
background: #1abc9c;
|
|
border-radius: 30% 70% 63% 37% / 30% 30% 70% 70%;
|
|
margin-right: 15px;
|
|
animation: logo 1.2s infinite alternate;
|
|
box-shadow: 0 0 10px #1abc9c;
|
|
}
|
|
|
|
@keyframes logo {
|
|
100% {
|
|
transform: scale(1.2);
|
|
border-radius: 67% 33% 37% 63% / 29% 60% 40% 71%;
|
|
}
|
|
}
|
|
</style>
|