CoolFace
Apppublic

ginipick/3d-model-playground

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
styles.css44 linesDownload Raw Back to root
1.text-box {2    padding: 8px 15px;3    background-color: rgba(255, 255, 255, 0.9);4    color: black;5    border-radius: 4px;6    font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;7    border: 2px solid black;8    box-shadow: 3px 3px 0px black;9    font-size: clamp(13px, 2vw, 15px);10    text-align: center;11    z-index: 200;12    opacity: 1;13    transition: opacity 0.3s ease-in-out, bottom 0.3s ease-in-out, box-shadow 0.2s ease;14}15 16#instruction-text {17    position: absolute;18    bottom: 10px;19    left: 50%;20    transform: translateX(-50%);21    pointer-events: none;22}23 24#social-links {25    position: absolute;26    bottom: 10px;27    left: 10px;28}29 30#coffee-link {31    position: absolute;32    bottom: 10px;33    right: 10px;34}35 36#video-link {37    position: absolute;38    top: 10px;39    left: 10px;40}41 42#logo {43    font-size: 2em;44}