/
kosalexs
/
test
Обзор
Документация
Войти
/
kosalexs
/
test
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
style.css
53 строки
989 B
Konstantin Alekseev
feat: первая версия проекта
10 фев 2026, 08:48
10 фев 2026, 08:48
163197e
Код
Авторство
О чём код?
body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: #f4f4f4; } .calculator { border: 1px solid #ccc; padding: 20px; border-radius: 10px; background-color: #fff; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); width: 300px; } .display { width: 100%; height: 40px; margin-bottom: 10px; text-align: right; font-size: 1.5em; padding: 5px; box-sizing: border-box; border: 1px solid #ccc; border-radius: 5px; } .buttons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; } button { padding: 10px; font-size: 1em; border: none; border-radius: 5px; cursor: pointer; background-color: #f0f0f0; } button:hover { background-color: #e0e0e0; } .operator { background-color: #ffcccb; } .equals { background-color: #98fb98; } .round { background-color: #87ceeb; }