CoolFace
Apppublic

danieldabush/namesphere-explorer

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
style.css31 linesDownload Raw Back to root
1body {2    font-family: 'Inter', sans-serif;3    margin: 0;4    padding: 0;5}6.name-tag {7    position: absolute;8    color: white;9    font-weight: 500;10    text-shadow: 0 0 5px rgba(0,0,0,0.5);11    pointer-events: auto;12    transition: transform 0.5s ease-out, opacity 0.5s ease;13    opacity: 0.7;14    will-change: transform;15    backface-visibility: hidden;16}17.name-tag:hover {18    transform: scale(2);19    opacity: 1;20    z-index: 100;21    text-shadow: 0 0 10px rgba(255,255,255,0.8);22}23 24.controls {25    z-index: 10;26}27 28#nameSphereContainer {29    position: relative;30    touch-action: none;31}