Import repositories from gitlab

This commit is contained in:
Julien Aldon
2026-01-19 11:43:59 +01:00
commit 68b7405c52
131 changed files with 17192 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
.pressBlock {
--element-width: 30vw;
display: flex;
.pressArticle, .pressImage {
width: var(--element-width);
margin: 1rem;
}
.pressImage {
align-self: center;
}
&:nth-of-type(2n+1) {
flex-flow: row-reverse;
}
}
@media only screen and (max-width: 80rem) {
.pressBlock {
--element-width: 45vw;
.pressImage {
width: calc(var(--element-width) - 10vw);
}
}
}
@media only screen and (max-width: 60rem) {
.pressBlock {
--element-width: 90vw;
&, &:nth-child(2n) {
flex-flow: column;
}
}
}