ADD: projects

This commit is contained in:
webfussel 2024-05-21 13:32:00 +02:00
parent 707c5ea64b
commit bbd2fcaafc
6 changed files with 95 additions and 57 deletions

View file

@ -7,37 +7,68 @@
display: flex;
flex-wrap: wrap;
align-items: stretch;
}
& article {
flex-grow: 1;
flex-shrink: 0;
flex-basis: clamp(400px, calc(33% - 3rem), 500px);
position: relative;
& article {
flex-grow: 1;
flex-shrink: 0;
flex-basis: clamp(400px, calc(33% - 3rem), 500px);
position: relative;
& .chip {
position: absolute;
right: -1rem;
top: calc(-1rem - 3px);
}
& .chip {
position: absolute;
right: -1rem;
top: calc(-1rem - 3px);
}
& header {
display: flex;
}
& ul {
list-style: none;
gap: 1rem;
& li {
& header {
display: flex;
align-items: center;
}
& ul {
list-style: none;
gap: 1rem;
& li {
display: flex;
align-items: center;
gap: 1rem;
}
}
& .extra {
margin-top: auto;
}
}
}
& .extra {
margin-top: auto;
.network-list {
& article {
width: clamp(400px, calc(33% - 3rem), 500px);
align-items: center;
gap: 1rem;
& img {
border: 4px solid var(--color-orange);
border-radius: 50%;
width: 150px;
}
& main {
margin-top: -1rem;
}
& span {
font-family: 'Roboto Condensed', sans-serif;
font-weight: bold;
&:not(:last-child):after {
content: " | "
}
}
& p {
text-align: center;
}
}
}
}