Files
stand/assets/sass/_contacto.scss
2021-01-13 14:17:30 -03:00

59 lines
811 B
SCSS

#contacto {
position: relative;
margin-top: 1rem;
.background {
position: absolute;
width: 100%;
height: 100%;
background-color: $gris;
clip-path: polygon(50% 0, 100% 0%, 100% 100%, 0% 100%);
}
.column {
height: 100%;
}
.column:first-child {
width: 67%;
}
.column:last-child {
width: 33%;
}
a {
color: inherit;
}
div.whatsapp {
background-color: green;
padding: .5rem 0;
color: $blanco;
}
.icons {
.icon:first-child {
color: $blanco;
}
.icon:last-child {
color: $gris;
}
}
.paragraph {
margin-bottom: .5rem;
text-align: justify;
}
form {
.row {
margin-bottom: .5rem;
input {
height: 1.5rem;
}
textarea {
height: 5rem;
}
}
}
}