/
F1lya
/
Modal_Window
Обзор
Документация
Войти
/
F1lya
/
Modal_Window
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Thumbnail.css
124 строки
2 KB
F1lya
upload files
20 окт 2025, 14:17
20 окт 2025, 14:17
f9aac0b
Код
Авторство
О чём код?
.thumbnail { background: white; border-radius: 12px; padding: 20px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); border: 1px solid #e5e7eb; min-width: 250px; } .thumbnail__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #f3f4f6; } .thumbnail__title { margin: 0; font-size: 16px; font-weight: 600; color: #111827; } .thumbnail__dimensions { font-size: 14px; font-weight: 500; color: #6b7280; background: #f3f4f6; padding: 4px 8px; border-radius: 6px; } .thumbnail__preview { width: 200px; height: 200px; border: 2px solid #e5e7eb; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin: 0 auto; overflow: hidden; background: linear-gradient(45deg, #f9fafb 25%, transparent 25%), linear-gradient(-45deg, #f9fafb 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #f9fafb 75%), linear-gradient(-45deg, transparent 75%, #f9fafb 75%); background-size: 16px 16px; background-position: 0 0, 0 8px, 8px -8px, -8px 0px; } .thumbnail__image { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.2s ease; } .thumbnail__placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; color: #9ca3af; text-align: center; padding: 20px; } .thumbnail__placeholder-icon { width: 48px; height: 48px; opacity: 0.5; } .thumbnail__loading { display: flex; flex-direction: column; align-items: center; gap: 8px; } .thumbnail__spinner { width: 24px; height: 24px; border: 2px solid #e5e7eb; border-top: 2px solid #3b82f6; border-radius: 50%; animation: spin 1s linear infinite; } .thumbnail__footer { margin-top: 16px; padding-top: 12px; border-top: 1px solid #f3f4f6; } .thumbnail__info { font-size: 12px; color: #6b7280; text-align: center; line-height: 1.4; } @keyframes spin { to { transform: rotate(360deg); } } /* Responsive design */ @media (max-width: 768px) { .thumbnail { min-width: auto; width: 100%; max-width: 300px; } .thumbnail__preview { width: 150px; height: 150px; } }