/
Jroslav1985
/
web-calc-spring
Обзор
Документация
Войти
/
Jroslav1985
/
web-calc-spring
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/main/resources/static/styles.css
109 строк
2 KB
Jroslav
commit
17 янв 2026, 17:06
17 янв 2026, 17:06
71c778e
Код
Авторство
О чём код?
body { background: #225950; color: #fff; font-family: Arial, sans-serif; padding: 20px; margin: 0; } .container { max-width: 600px; margin: 0 auto; } h1 { text-align: center; color: #fff; } .calculator { background: #005950; padding: 20px; border-radius: 10px; margin-bottom: 20px; } .input-group { margin-bottom: 15px; } label { display: block; margin-bottom: 5px; font-weight: bold; } input { padding: 10px; border: 1px solid #ccc; border-radius: 4px; width: 100%; box-sizing: border-box; font-size: 16px; } .buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; } button { background: #008CBA; color: white; padding: 12px; border: none; border-radius: 4px; cursor: pointer; font-size: 16px; transition: background 0.3s; } button:hover { background: #005f73; } #result { font-weight: bold; font-size: 1.5em; color: #ffeb3b; text-align: center; padding: 10px; background: rgba(0,0,0,0.2); border-radius: 5px; } .history { background: #fff; color: #333; padding: 20px; border-radius: 10px; } .history h2 { margin-top: 0; color: #005950; border-bottom: 2px solid #005950; padding-bottom: 10px; } .history-item { background: #f5f5f5; padding: 10px 15px; margin: 8px 0; border-radius: 5px; border-left: 4px solid #008CBA; } .history-item.empty { text-align: center; color: #666; font-style: italic; } .history-item.error { border-left-color: #ff4444; background: #ffeaea; color: #cc0000; }