feat: remove robot floor shadow

This commit is contained in:
ltadeu6 2026-06-07 12:31:57 -03:00
parent 9f9fa2a49e
commit e4ecfb51c2
No known key found for this signature in database
GPG key ID: FB9FDAB6B6F3418D

View file

@ -725,21 +725,6 @@ html, body {
} }
/* ROBOT SHADOW (ellipse on the floor) */ /* ROBOT SHADOW (ellipse on the floor) */
.robot-shadow {
position: absolute;
bottom: -28px;
left: 50%;
transform: translateX(-50%);
width: 130px; height: 22px;
background: radial-gradient(ellipse, rgba(0,100,255,0.38) 0%, transparent 68%);
border-radius: 50%;
animation: shadowAnim 0.5s ease-in-out infinite alternate;
pointer-events: none;
}
@keyframes shadowAnim {
from { transform: translateX(-50%) scaleX(0.75) scaleY(0.6); opacity: 0.35; }
to { transform: translateX(-50%) scaleX(1.3) scaleY(1.6); opacity: 0.85; }
}
</style> </style>
</head> </head>
@ -768,7 +753,6 @@ html, body {
<div class="robot-wrap"> <div class="robot-wrap">
<div class="beat-wrap"> <div class="beat-wrap">
<img src="skeleton3.apng" class="skeleton-gif" alt="skeleton"> <img src="skeleton3.apng" class="skeleton-gif" alt="skeleton">
<div class="robot-shadow"></div>
</div> </div>
</div><!-- .robot-wrap --> </div><!-- .robot-wrap -->