CoolFace
Apppublic

bilca/visionneur_playcanva

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
style.css49 linesDownload Raw Back to root
1body {2    margin: 0;3    padding: 0;4    font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;5    background-color: black;6    width: 100vw;7    height: 100vh;8    display: flex;9    justify-content: center;10    align-items: center;11    overflow: hidden;12}13 14html, body {15  background-color: black;16  margin: 0;17  padding: 0;18  width: 100%;19  height: 100%;20}21 22canvas {23    display: block;24    background-color: transparent; /* Ensures gsplat blending is correct */25}26 27h1 {28    font-size: 16px;29    margin-top: 0;30}31 32p {33    font-size: 15px;34    margin-bottom: 10px;35    margin-top: 5px;36}37 38.card {39    max-width: 620px;40    margin: 0 auto;41    padding: 16px;42    border: 1px solid lightgray;43    border-radius: 16px;44}45 46.card p:last-child {47    margin-bottom: 0;48}49