page rapport
All checks were successful
Deploy / Deploy to Production (push) Successful in 10s

This commit is contained in:
Julie Blanc 2026-01-08 18:41:26 +01:00
parent 8fc46375a0
commit 610bee465c
17 changed files with 601 additions and 29 deletions

View file

@ -19,7 +19,7 @@
font-size: var(--fs-medium);
font-weight: normal;
text-transform: uppercase;
flex-grow: 2;
// flex-grow: 2;
a{ text-decoration: none;}
}

View file

@ -1,7 +1,18 @@
#hero{
width: 100vw;
width: calc(100vw - var(--padding-body)*4);
position: relative;
left: calc(var(--padding-body)*-1);
left: calc(var(--padding-body)*1);
@media #{$medium}{
width: calc(100vw - var(--padding-body)*2);
position: relative;
left: 0;
}
@media #{$small}{
width: 100vw;
left: calc(var(--padding-body)*-1);
}
figcaption{
color: var(--color-txt-light);

View file

@ -3,7 +3,7 @@
// border-radius: calc(var(--h-block)*0.75/2);
border-radius: var(--radius-small);
display: flex;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 1.5ch;
@ -18,5 +18,30 @@
overflow: hidden;
white-space: nowrap;
}
.tag-inline{
height: calc(var(--h-block)*0.75);
// border-radius: calc(var(--h-block)*0.75/2);
border-radius: var(--radius-small);
border: var(--border-medium);
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 1.5ch;
padding-top: 3px;
font-size: var(--fs-small);
line-height: 1;
background-color: var(--color-bg);
color: var(--color-txt-light);
overflow: hidden;
white-space: nowrap;
text-transform: uppercase;
}