mirror of
https://github.com/ArthurDanjou/arthurdanjou.fr.git
synced 2026-01-14 12:14:34 +01:00
40 lines
587 B
SCSS
40 lines
587 B
SCSS
#env .env-container {
|
|
width: 100%;
|
|
margin-bottom: 60px;
|
|
|
|
h1 {
|
|
margin-top: 40px;
|
|
font-size: $web-h1;
|
|
|
|
@media screen and (max-width: 700px) {
|
|
font-size: $mobile-h1;
|
|
}
|
|
}
|
|
|
|
p {
|
|
margin: 20px 0;
|
|
color: $black-3;
|
|
font-size: $web-p;
|
|
|
|
@media screen and (max-width: 700px) {
|
|
font-size: $mobile-p;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
margin-left: 2rem;
|
|
li {
|
|
padding: 5px 10px;
|
|
|
|
color: $black-3;
|
|
a {
|
|
color: $black-1;
|
|
font-weight: bold;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |