add resources section

This commit is contained in:
isUnknown 2024-08-27 17:10:48 +02:00
parent 87d74195e7
commit 4cd3bfba57
8 changed files with 111 additions and 37 deletions

View file

@ -60,3 +60,35 @@ body.progress * {
.social-icons a:hover svg {
transform: scale(1.15);
}
.close-btn {
position: relative;
width: 1.5rem;
height: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
justify-self: end;
}
.close-btn__line,
.close-btn__line::before {
content: "";
width: 100%;
height: 3px;
background-color: #000;
position: absolute;
}
.close-btn__line {
transform: rotate(-45deg);
}
.close-btn__line::before {
transform: rotate(90deg);
}
.arrow-down {
font-size: 2rem;
height: 1.5rem;
transform: translateY(-0.2rem);
}