Files
nhgooi.nl/resources/assets/sass/components/_contact_box.scss
Jorit Tijsen 1d94e7da7f Add some variables to the scss files
Use the period API call for the program schema
2024-03-20 17:54:10 +01:00

41 lines
700 B
SCSS
Vendored

@use "../abstracts/mixin" as *;
@use "../abstracts/variables" as *;
.contact_box {
position: relative;
padding: 15px 23px 15px 15px;
.logo-whatsapp {
position: absolute;
right: 0;
top: 0;
}
h2 {
font-family: Montserrat, serif;
font-size: 24px;
font-weight: 600;
line-height: 1.17;
color: $text-dark-color;
margin-top: 0;
padding-right: 60px;
}
p {
font-family: Nunito, serif;
font-size: 14px;
font-weight: 500;
line-height: 1.57;
color: $text-secondary-color;
}
.read_more {
@include read_more_link;
}
}
@media (max-width: 768px) and (min-width: 423px) {
.contact_box p {
width: CALC(100% - 81px);
}
}