/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/html/css-8-001/part-02.css
107 строк
2 KB
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
.calculator { background: white; border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); padding: 30px; width: 320px; margin: 40px auto; transition: transform 0.3s ease; } .calculator:hover { transform: translateY(-5px); } .input-group { position: relative; margin: 15px 0; } .input-group input { width: 100%; padding: 12px 15px; border: 2px solid #e0e0e0; border-radius: 10px; font-size: 16px; transition: all 0.3s; } .input-group input:focus { border-color: #6c63ff; outline: none; box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2); } .input-group .tooltip { visibility: hidden; width: 120px; background-color: #555; color: #fff; text-align: center; border-radius: 6px; padding: 5px; position: absolute; z-index: 1; bottom: 125%; left: 50%; transform: translateX(-50%); opacity: 0; transition: opacity 0.3s; } .input-group:hover .tooltip { visibility: visible; opacity: 1; } .buttons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; } button { background: #6c63ff; color: white; border: none; padding: 15px 0; border-radius: 10px; font-size: 18px; cursor: pointer; transition: all 0.3s; } button:hover { background: #5a52e0; transform: translateY(-2px); } button:active { transform: translateY(0); } .result { margin-top: 20px; padding: 15px; background: #f8f9fa; border-radius: 10px; font-size: 18px; text-align: center; border: 1px dashed #dee2e6; min-height: 20px; } .error-message { color: #dc3545; font-size: 14px; margin-top: 5px; display: none; } @media (max-width: 400px) { .calculator { width: 100%; padding: 20px; } }