pinned investigation
All checks were successful
Deploy / Deploy to Production (push) Successful in 12s
All checks were successful
Deploy / Deploy to Production (push) Successful in 12s
This commit is contained in:
parent
05e49af352
commit
bee25e5922
11 changed files with 102 additions and 172 deletions
|
|
@ -1065,6 +1065,23 @@ button.sort[data-sort-type=up] .arrow {
|
|||
flex-direction: column;
|
||||
flex-grow: 2;
|
||||
}
|
||||
.card--article .pin {
|
||||
position: absolute;
|
||||
top: var(--padding-inner);
|
||||
left: var(--padding-inner);
|
||||
z-index: 200;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border-radius: var(--radius-small);
|
||||
background-color: rgba(255, 255, 255, 0.27);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.card--article .pin svg {
|
||||
width: 16px;
|
||||
fill: var(--color-txt);
|
||||
}
|
||||
.card--article .title {
|
||||
margin-top: calc(var(--spacing) * 0.5);
|
||||
font-size: var(--fs-medium);
|
||||
|
|
@ -1847,7 +1864,7 @@ body main {
|
|||
-moz-column-gap: var(--padding-inner);
|
||||
column-gap: var(--padding-inner);
|
||||
row-gap: calc(var(--spacing) * 1);
|
||||
grid-template-columns: 30% 70%;
|
||||
grid-template-columns: 65% 35%;
|
||||
grid-template-rows: auto auto 1fr;
|
||||
position: relative;
|
||||
}
|
||||
|
|
@ -1862,28 +1879,34 @@ body main {
|
|||
line-height: var(--leading-tight);
|
||||
font-weight: normal;
|
||||
margin-top: calc(var(--spacing) * 1);
|
||||
text-wrap: balance;
|
||||
}
|
||||
#rapport .rapport__header .rapport__title-group .subtitle {
|
||||
font-size: var(--fs-big);
|
||||
line-height: var(--leading-tight);
|
||||
font-weight: normal;
|
||||
text-wrap: balance;
|
||||
}
|
||||
#rapport .rapport__header .rapport__figure {
|
||||
width: 100%;
|
||||
aspect-ratio: 4/5;
|
||||
grid-row: span 2;
|
||||
grid-column: 1;
|
||||
#rapport .rapport__header figure {
|
||||
aspect-ratio: 16/9;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
}
|
||||
#rapport .rapport__header .rapport__figure img {
|
||||
#rapport .rapport__header figure img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
|
||||
}
|
||||
#rapport .rapport__header figure {
|
||||
grid-row: 2;
|
||||
grid-column: 2;
|
||||
}
|
||||
#rapport .rapport__header .rapport__dl {
|
||||
grid-row: 2;
|
||||
grid-column: 2;
|
||||
align-self: start;
|
||||
grid-column: 1;
|
||||
align-self: end;
|
||||
font-size: var(--fs-small);
|
||||
border-bottom: var(--border-light);
|
||||
align-items: flex-start;
|
||||
|
|
@ -1901,22 +1924,16 @@ body main {
|
|||
padding-right: 1ch;
|
||||
}
|
||||
#rapport .rapport__header .btn--group {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: start;
|
||||
align-items: start;
|
||||
gap: calc(var(--spacing) * 0.25);
|
||||
position: relative;
|
||||
grid-row: 3;
|
||||
grid-column: 2;
|
||||
}
|
||||
#rapport .rapport__header .btn--group button, #rapport .rapport__header .btn--group label {
|
||||
min-width: 28ch;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
#rapport .rapport__header .btn--group button a, #rapport .rapport__header .btn--group label a {
|
||||
justify-content: flex-start;
|
||||
grid-column: 1/3;
|
||||
display: flex;
|
||||
justify-content: start;
|
||||
flex-wrap: wrap;
|
||||
align-items: start;
|
||||
gap: calc(var(--spacing) * 0.25);
|
||||
}
|
||||
|
||||
#rapport .rapport__content {
|
||||
max-width: var(--max-w-content);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue