CoolFace
Apppublic

MarkTheArtist/dualview-delight-split-screen-explorer

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
style.css25 linesDownload Raw Back to root
1/* Custom styles that can't be done with Tailwind */2iframe {3    background-color: #f8fafc;4}5 6/* Responsive adjustments */7@media (max-width: 768px) {8    .flex-col {9        flex-direction: column;10    }11    12    iframe {13        height: 300px;14    }15}16 17/* Animation for frame loading */18@keyframes fadeIn {19    from { opacity: 0; }20    to { opacity: 1; }21}22 23iframe {24    animation: fadeIn 0.3s ease-in-out;25}