mirror of
https://github.com/ArthurDanjou/arthurdanjou.fr.git
synced 2026-01-14 12:14:34 +01:00
68 lines
1.2 KiB
SCSS
68 lines
1.2 KiB
SCSS
$text-color: #37383F;
|
|
|
|
#skills {
|
|
height: 60vh;
|
|
width: 100%;
|
|
background-color: white;
|
|
color:$text-color;
|
|
|
|
@media screen and (max-width: 700px) {
|
|
height: 90vh;
|
|
}
|
|
|
|
.skills-container {
|
|
padding: 40px;
|
|
width: 100%;
|
|
height: 60vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-content: center;
|
|
position: absolute;
|
|
flex-direction: row;
|
|
|
|
@media screen and (max-width: 700px) {
|
|
height: 90vh;
|
|
padding: 10px;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
|
|
.skill {
|
|
width: 50%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
padding: 10%;
|
|
|
|
@media screen and (max-width: 700px) {
|
|
width: 100%;
|
|
height: 40%;
|
|
}
|
|
|
|
.color {
|
|
color: #d9fcff;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
font-size: 1.7rem;
|
|
margin-bottom: 20px;
|
|
|
|
&:after {
|
|
margin: 7px auto;
|
|
width: 40px;
|
|
height: 2px;
|
|
display: block;
|
|
content: "";
|
|
background-color: #00d9ff;
|
|
}
|
|
}
|
|
p {
|
|
font-size: 1.2rem;
|
|
text-align: justify;
|
|
}
|
|
}
|
|
}
|
|
|
|
} |