CoolFace
Apppublic

tlevsen/phantom-lock-document-vault

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
style.css27 linesDownload Raw Back to root
1/* Base styles */2body {3    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;4    line-height: 1.6;5}6 7/* Animation for the progress bar */8@keyframes progress {9    0% { width: 0%; }10    100% { width: 100%; }11}12 13/* Custom transitions */14.transition-all {15    transition: all 0.3s ease;16}17 18/* Responsive adjustments */19@media (max-width: 640px) {20    #app {21        padding: 1rem;22    }23    24    .rounded-xl {25        border-radius: 0.75rem;26    }27}