/
EugenyCh7
/
ElectronLessons
Обзор
Документация
Войти
/
EugenyCh7
/
ElectronLessons
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
HelloWorld/css/style.css
55 строк
831 B
eugenych
vert fix
27 сен 2023, 23:05
27 сен 2023, 23:05
d24ffdc
Код
Авторство
О чём код?
* { margin: 0; padding: 0; box-sizing: border-box; } html, body { width: 100%; height: 100%; } body { background-color: #121212; color: #cccccc; } div.app { position: relative; width: 100%; height: 100%; } div.header { display: grid; grid-template-columns: 10px 40px 1fr 50px 50px 50px 10px; height: 40px; background-color: #212121; } div.header>div.title { -webkit-app-region: drag; } div.win-btn { line-height: 40px; text-align: center; font-size: 12px; transition: all .3s ease-in-out; } div.win-btn>* { margin-top: 20px; transform: translate(0, -50%); } div.win-btn:hover { background-color: #333333; transition: all .3s ease-in-out; } div.win-btn:active { background-color: #121212; transition: all .3s ease-in-out; }