/
enn
/
WebSite1_lab
Обзор
Документация
Войти
/
enn
/
WebSite1_lab
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
CSS/style.css
71 строка
1 KB
Sebastiana
Первая лабораторная работа - структура HTML
23 фев 2026, 14:36
23 фев 2026, 14:36
4400f27
Код
Авторство
О чём код?
/* style.css - минималистичная версия */ /* Подключаем шрифт Roboto (кириллический) */ @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); body { font-family: 'Roboto', sans-serif; font-size: 18px; font-weight: 400; line-height: 1.5; color: #333; background-color: #f5f5f5; margin: 20px; padding: 20px; } h1 { font-weight: 700; text-align: center; color: #c0392b; background-color: #fff; border: 2px solid #e67e22; border-radius: 10px; padding: 15px; } p { background-color: #fff; border-left: 4px solid #e67e22; border-radius: 0 8px 8px 0; padding: 12px; } img { border: 3px solid #e67e22; border-radius: 15px; max-width: 100%; display: block; margin: 20px auto; } a { color: #d35400; text-decoration: none; font-weight: 700; margin-right: 15px; } ul { border: 2px dashed #e67e22; border-radius: 8px; background-color: #fff; padding: 20px 35px; } footer { background-color: #2c3e50; color: white; text-align: center; border: 1px solid #e67e22; border-radius: 5px; padding: 10px; margin-top: 30px; } footer p { border: none; background: transparent; color: white; padding: 0; }