Лагерь: Секция Контаткы
This commit is contained in:
parent
f4d29327e3
commit
3906e22094
@ -1986,7 +1986,49 @@ html {
|
|||||||
|
|
||||||
.contact_social {
|
.contact_social {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 15px;
|
flex-wrap: wrap;
|
||||||
|
gap: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Social links: единый стиль с .contact_tel */
|
||||||
|
.social_item {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
text-decoration: none;
|
||||||
|
color: var(--color-primary);
|
||||||
|
font-family: var(--font-body);
|
||||||
|
font-size: clamp(16px, 2vw, 20px);
|
||||||
|
font-weight: 600;
|
||||||
|
line-height: 1.2;
|
||||||
|
transition: color var(--transition-fast), opacity var(--transition-fast);
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.social_item:hover {
|
||||||
|
color: var(--color-primary-hover);
|
||||||
|
}
|
||||||
|
|
||||||
|
.social_item::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
bottom: -2px;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
height: 2px;
|
||||||
|
background: var(--color-primary);
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity var(--transition-fast);
|
||||||
|
}
|
||||||
|
|
||||||
|
.social_item:hover::after {
|
||||||
|
opacity: 0.4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.social_item + .social_item::before {
|
||||||
|
content: '·';
|
||||||
|
margin-right: 12px;
|
||||||
|
color: var(--color-text-light);
|
||||||
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact-map {
|
.contact-map {
|
||||||
@ -2878,13 +2920,17 @@ html {
|
|||||||
font-size: clamp(12px, 1.5vw, 18px);
|
font-size: clamp(12px, 1.5vw, 18px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact_tel {
|
.contact_tel {
|
||||||
font-size: clamp(13px, 1.7vw, 20px);
|
font-size: clamp(13px, 1.7vw, 20px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact_social {
|
.social_item {
|
||||||
gap: clamp(10px, 1.25vw, 15px);
|
font-size: clamp(14px, 1.6vw, 18px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.contact_social {
|
||||||
|
gap: clamp(8px, 1vw, 12px);
|
||||||
|
}
|
||||||
|
|
||||||
.contact-map {
|
.contact-map {
|
||||||
border-radius: clamp(20px, 2.5vw, 30px);
|
border-radius: clamp(20px, 2.5vw, 30px);
|
||||||
@ -3156,10 +3202,13 @@ html {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact_tel {
|
.contact_tel {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
.mentors__item_img {
|
.social_item {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
.mentors__item_img {
|
||||||
max-height: 195px;
|
max-height: 195px;
|
||||||
}
|
}
|
||||||
.modal-mentors-wrapper {
|
.modal-mentors-wrapper {
|
||||||
|
|||||||
@ -816,7 +816,7 @@ function enqueue_template_specific_styles() {
|
|||||||
'template-specific-style',
|
'template-specific-style',
|
||||||
get_template_directory_uri() . '/assets/css/camp.css',
|
get_template_directory_uri() . '/assets/css/camp.css',
|
||||||
array(),
|
array(),
|
||||||
'1.7'
|
'1.8'
|
||||||
);
|
);
|
||||||
wp_enqueue_script(
|
wp_enqueue_script(
|
||||||
'camp-script',
|
'camp-script',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user