/
engineunity_sub
/
doxml_work_site
Обзор
Документация
Войти
/
engineunity_sub
/
doxml_work_site
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
master
src/css/sections/about.css
76 строк
1 KB
PauloChaser
move content from branch dev to master
12 фев 2025, 18:06
12 фев 2025, 18:06
a2e2735
Код
Авторство
О чём код?
/*Страница about - About Section */ .about { gap: 30px; margin-bottom: 80px; } .about__row { justify-content: space-between; } .about__text { max-width: 900px; margin-bottom: 24px; line-height: 1.5; color: var(--gray); } .about__imageWrapper { width: 300px; height: auto; border-radius: 10px; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); overflow: hidden; flex-shrink: 0; } .about__image { width: 100%; height: 100%; object-fit: cover; } .about__image--mob { display: none; } @media (max-width: 991px) { /* About Section */ .about { gap: 20px; margin-bottom: 60px; margin-top: 60px; padding-top: 0; } } @media (max-width: 768px) { .about { margin-top: 40px; } .about__row { position: relative; } .about__imageWrapper { position: absolute; right: 10%; top: -10px; z-index: -1; opacity: 0.8; width: 50px; height: 50px; box-shadow: none; } .about__image { display: none; } .about__image--mob { display: inline-block; } }