ADD: Skills

This commit is contained in:
webfussel 2024-05-20 21:10:23 +02:00
parent c04f9e66ca
commit 8d282499bd
8 changed files with 103 additions and 29 deletions

View file

@ -0,0 +1,32 @@
.Skills {
background: var(--color-orange-black);
background-image: radial-gradient(circle at 90vw 0, rgba(255,145,0,0.2) 0%, rgba(0,0,0,0) 63%, rgba(0,0,0,0) 100%);
background-repeat: no-repeat;
& .skills-wrapper {
margin-top: 3rem;
display: flex;
gap: 3rem;
}
& article {
display: flex;
flex-direction: column;
gap: 2rem;
padding: 2rem;
background: var(--color-black);
border-radius: 20px;
& p:last-of-type {
margin-top: 2rem;
}
}
& .bottom {
margin-top: 3rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 3rem;
}
}