/
alekstar79
/
board
Обзор
Документация
Войти
/
alekstar79
/
board
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
styles.css
35 строк
493 B
alekstar79
Upload files
24 янв 2023, 17:53
24 янв 2023, 17:53
83af176
Код
Авторство
О чём код?
* { box-sizing: border-box; } body { background-color: #111; display: flex; align-items: center; justify-content: center; height: 100vh; overflow: hidden; margin: 0; } .container { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; max-width: 400px; } .square { width: 16px; height: 16px; margin: 2px; background-color: #1d1d1d; box-shadow: 0 0 2px #000; transition: 2s ease; } .square:hover { transition-duration: 0s; }