File size: 1,517 Bytes
00c76ab 4d5e265 00c76ab 4d5e265 5ea2408 00c76ab 4d5e265 00c76ab 4d5e265 00c76ab 4d5e265 00c76ab 4d5e265 00c76ab | 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
:root {
--primary-500: #6366F1;
--primary-600: #4F46E5;
--secondary-500: #8B5CF6;
--secondary-600: #7C3AED;
--dark-color: #1E293B;
--light-color: #F8FAFC;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
body {
background-color: var(--light-color);
color: var(--dark-color);
}
.file-preview {
max-width: 100px;
max-height: 100px;
object-fit: cover;
border-radius: 0.25rem;
}
.url-cell {
max-width: 200px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#authModal input {
margin-bottom: 0.5rem;
}
#userInfo {
background-color: rgba(99, 102, 241, 0.1);
padding: 0.5rem 1rem;
border-radius: 0.5rem;
font-size: 0.875rem;
}
.editable-cell {
cursor: pointer;
transition: background-color 0.2s;
}
.editable-cell:hover {
background-color: rgba(99, 102, 241, 0.1);
}
.editable-cell input {
width: 100%;
padding: 0.25rem 0.5rem;
border: 1px solid #E2E8F0;
border-radius: 0.25rem;
outline: none;
}
.table-actions button {
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
margin-right: 0.5rem;
transition: background-color 0.2s;
}
.table-actions button:hover {
background-color: rgba(0, 0, 0, 0.05);
}
/* Responsive adjustments */
@media (max-width: 768px) {
.container {
padding: 1rem;
}
table {
display: block;
overflow-x: auto;
white-space: nowrap;
}
} |