/
yuizil
/
Progi
Обзор
Документация
Войти
/
yuizil
/
Progi
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
web7/style.css
67 строк
1 KB
yuizil
upload files
01 дек 2025, 17:50
01 дек 2025, 17:50
6f4fa8e
Код
Авторство
О чём код?
body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: #f4f4f4; } .calculator { width: 300px; background: #78b0f0; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); padding: 20px; } .display { width: 94%; height: 50px; font-size: 1.5rem; border: 1px solid #ccc; border-radius: 4px; text-align: right; padding: 5px 10px; margin-bottom: 15px; background-color: #f9f9f9; } .buttons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; } .button { height: 50px; font-size: 1.2rem; background: #f0f0f0; border: none; border-radius: 4px; cursor: pointer; transition: background 0.3s; } .button:hover { background: #ddd; } .button.operator { background: #064ed3; color: white; } .button.operator:hover { background: #064ed3; } .button.red { background: #ff4d4d; color: white; } .button.red:hover { background: #e63939; }