mirror of
https://github.com/ArthurDanjou/arthurdanjou.fr.git
synced 2026-01-26 18:00:27 +01:00
46 lines
741 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |