/
nizer
/
SylentByte
Обзор
Документация
Войти
/
nizer
/
SylentByte
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/index.css
92 строки
1 KB
Ixsize
переместил файлы
01 дек 2025, 22:34
01 дек 2025, 22:34
ae151cf
Код
Авторство
О чём код?
@import "tailwindcss"; @import "leaflet/dist/leaflet.css"; body { font-family: Arial, sans-serif; margin: 0; padding: 0; line-height: 1.6; } @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes slideInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } .animate-slideDown { animation: slideDown 0.3s ease-out; } .animate-fadeIn { animation: fadeIn 0.5s ease-in; } .animate-slideInUp { animation: slideInUp 0.6s ease-out; } .loader { border: 4px solid #3d3d3d; border-top: 4px solid #4CAF50; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } .animate-bounce { animation: bounce 2s infinite; } .scroll-smooth { scroll-behavior: smooth; }