Files
2020-06-10 12:02:03 +02:00

46 lines
741 B
SCSS

.services {
width: 100%;
margin-bottom: 60px;
.services-container {
margin: 30px 0;
h1 {
font-size: $web-h1;
line-height: 1;
}
h4 {
font-weight: normal;
font-size: $web-h4;
font-style: italic;
margin-bottom: 10px;
}
p {
font-size: $web-p;
margin-bottom: 10px;
}
.mail-button {
margin: 5px 0;
a {
padding: 5px 10px;
border-radius: 5px;
border: 1px solid $black-1;
background-color: $black-1;
color: $white;
font-weight: bold;
font-size: $web-p;
transition: .3s;
&:hover {
background-color: $white;
color: $black-1;
}
}
}
}
}