/
r47717
/
react-minesweeper
Обзор
Документация
Войти
/
r47717
/
react-minesweeper
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/components/Cell/index.css
29 строк
583 B
r47717
v1.0, no mobx
22 янв 2020, 18:14
22 янв 2020, 18:14
22484f4
Код
Авторство
О чём код?
.cell { background: #eeeeee; border-top: 5px solid #ffffff; border-left: 5px solid #ffffff; border-right: 5px solid #aaaaaa; border-bottom: 5px solid #aaaaaa; display: flex; justify-content: center; align-items: center; font-size: 0; } .cell.closed { cursor: pointer; } .cell.open { font-size: inherit; border: 1px solid #cccccc; } .cell.marked { background: url('./img/flag.png') center / 20px auto no-repeat; } .cell.boom { border: 1px solid red; background: red url('./img/mine.png') center / 20px auto no-repeat; }