/
enn
/
WebSite1_lab
Обзор
Документация
Войти
/
enn
/
WebSite1_lab
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
lab4-css
CSS/style.css
127 строк
2 KB
Sebastiana
лаб 4
02 мар 2026, 14:04
02 мар 2026, 14:04
5bc58cc
Код
Авторство
О чём код?
/* style.css - лаб. работа 2 */ @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap'); * { box-sizing: border-box; } body { font-family: 'Roboto', sans-serif; font-size: 16px; font-weight: 300; line-height: 1.6; color: #2c3e50; background-color: #ecf0f1; margin: 20px; padding: 20px; min-width: 320px; max-width: 1200px; min-height: 100vh; position: relative; } h1 { font-weight: 500; text-align: center; color: #c0392b; background-color: #fff; border: 2px solid #e67e22; border-radius: 10px; padding: 15px; width: 80%; max-width: 800px; min-height: 60px; margin: 20px auto; position: relative; z-index: 2; } p { font-size: 17px; font-weight: 400; line-height: 1.7; background-color: #fff; border-left: 4px solid #e67e22; border-radius: 0 8px 8px 0; padding: 12px; max-width: 900px; min-height: 80px; margin: 15px auto; position: relative; } img { border: 3px solid #e67e22; border-radius: 15px; max-width: 100%; height: auto; display: block; margin: 20px auto; width: 100%; max-width: 500px; min-width: 200px; min-height: 150px; max-height: 400px; object-fit: cover; position: relative; z-index: 1; } a { color: #2980b9; text-decoration: none; font-weight: 500; margin-right: 15px; display: inline-block; min-width: 100px; height: 40px; line-height: 40px; position: relative; z-index: 3; } a:hover { color: #e67e22; text-decoration: underline; } ul { font-size: 17px; font-weight: 400; line-height: 1.8; border: 2px dashed #e67e22; border-radius: 8px; background-color: #fff; padding: 20px 35px; max-width: 600px; min-height: 150px; margin: 20px auto; position: relative; z-index: 2; } footer { background-color: #34495e; color: #ecf0f1; text-align: center; border: 1px solid #e67e22; border-radius: 5px; padding: 10px; margin-top: 30px; min-height: 60px; position: relative; bottom: 0; z-index: 4; } footer p { font-size: 15px; font-weight: 300; line-height: 1.4; border: none; background: transparent; color: #bdc3c7; padding: 0; min-height: 20px; }