/
Orpheus
/
laba1
Обзор
Документация
Войти
/
Orpheus
/
laba1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
style.css
164 строки
3 KB
Orpheus
1лаб
09 июн 2025, 05:36
09 июн 2025, 05:36
ccea60f
Код
Авторство
О чём код?
/* Общие стили */ body { font-family: Arial, sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background-color: #f9f9f9; } header, main, footer { padding: 20px; max-width: 1200px; margin: 0 auto; } h1 { color: #2c3e50; border-bottom: 2px solid #3498db; padding-bottom: 10px; } h2 { color: #2980b9; } /* Стили для текста */ article { background-color: white; padding: 20px; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); margin-bottom: 20px; } ol, ul { padding-left: 20px; } /* Стили для изображений */ .image-section { margin: 30px 0; } .large-image-container { position: relative; width: 100%; max-width: 800px; margin: 0 auto; } .large-image { width: 100%; height: auto; display: block; border-radius: 5px; } .small-image { width: 80px; height: 80px; position: absolute; border-radius: 50%; border: 2px solid white; box-shadow: 0 2px 5px rgba(0,0,0,0.3); } .pos1 { top: 20px; left: 20px; } .pos2 { top: 20px; right: 20px; } .pos3 { bottom: 20px; right: 20px; } /* Стили для контактов */ .contact-section { background-color: #e8f4fc; padding: 20px; border-radius: 5px; margin-bottom: 20px; } .contact-section a { color: #2980b9; text-decoration: none; } .contact-section a:hover { text-decoration: underline; } /* Стили для формы */ .form-section { background-color: white; padding: 20px; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } .form-group { margin-bottom: 15px; } label { display: block; margin-bottom: 5px; font-weight: bold; } input[type="text"], input[type="email"], input[type="password"], input[type="date"], select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .checkbox-group { display: flex; align-items: center; } .checkbox-group input { width: auto; margin-right: 10px; } .submit-btn { background-color: #3498db; color: white; border: none; padding: 12px 20px; border-radius: 4px; cursor: pointer; font-size: 16px; transition: background-color 0.3s; } .submit-btn:hover { background-color: #2980b9; } /* Стили для футера */ footer { text-align: center; margin-top: 30px; padding: 20px; background-color: #2c3e50; color: white; border-radius: 5px; }