File size: 890 Bytes
0c45221 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | @import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
/* Base styles */
body {
font-family: 'Inter', sans-serif;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #F7D348;
border-radius: 3px;
}
/* Animations */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.fade-in {
animation: fadeIn 0.3s ease;
}
/* Transitions */
.transition-200 {
transition: all 0.2s ease;
}
/* File icons */
.file-icon {
@apply w-5 h-5 mr-2;
}
.file-icon-image {
color: #38A169;
}
.file-icon-pdf {
color: #E53E3E;
}
.file-icon-video {
color: #805AD5;
}
.file-icon-audio {
color: #3182CE;
}
.file-icon-zip {
color: #DD6B20;
}
.file-icon-default {
color: #6E6E6E;
} |