This commit is contained in:
Julie Blanc 2026-01-09 15:29:19 +01:00
parent 672553f3aa
commit eaf77e8975
8 changed files with 65 additions and 51 deletions

View file

@ -2047,4 +2047,27 @@ body main {
#tab-toc:checked ~ .content-aside #print-features {
display: none;
}
#rapport {
--fig-outside: calc(var(--spacing)*2);
}
#rapport .container-figure {
width: calc(100% + var(--fig-outside) * 2);
position: relative;
left: calc(var(--fig-outside) * -1);
}
#rapport .fig-simple {
height: calc(100vh - var(--header-h) - var(--spacing) * 2);
}
#rapport .fig-simple figure {
height: 100%;
width: 100%;
overflow: hidden;
}
#rapport .fig-simple figure img {
width: 100%;
height: 100%;
-o-object-fit: contain;
object-fit: contain;
}/*# sourceMappingURL=style.css.map */

File diff suppressed because one or more lines are too long

View file

@ -277,4 +277,31 @@
#tab-print:checked ~ .content-aside #print-features{ display: block; }
#tab-toc:checked ~ .content-aside #toc{ display: block; }
#tab-toc:checked ~ .content-aside #print-features{ display: none; }
#tab-toc:checked ~ .content-aside #print-features{ display: none; }
#rapport{
--fig-outside: calc(var(--spacing)*2);
.container-figure{
width: calc(100% + var(--fig-outside)*2);
position: relative;
left: calc(var(--fig-outside)*-1);
}
.fig-simple{
height: calc(100vh - var(--header-h) - var(--spacing)*2);
figure{
height: 100%;
width: 100%;
overflow: hidden;
img{
width: 100%;
height: 100%;
object-fit: contain;
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 910 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 706 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 695 KiB