80 lines
1.6 KiB
SCSS
Raw Normal View History

2025-01-03 17:25:18 +01:00
.-best-posts {
.rewind-report-container {
flex-direction: column;
gap: 1em;
}
2025-01-06 11:53:18 -06:00
.rewind-card {
max-width: 700px;
text-align: left;
align-items: unset;
2025-01-10 14:26:35 -06:00
position: relative;
@include rewind-border;
&.rank-1 {
--background: #ffe46a;
--border-color: #ffd82a;
}
&.rank-2 {
--background: #d6d6d6;
--border-color: #c4c4c4;
}
&.rank-3 {
--background: #dca570;
--border-color: #cd7f32;
}
}
.best-posts.-rank {
z-index: -1;
position: absolute;
top: 8px;
left: -28px;
width: 0px;
height: 0px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: none;
border-right: 28px solid var(--border-color);
border-top: 28px solid transparent;
&:nth-child(2) {
z-index: -1;
position: absolute;
top: 8px;
left: -28px;
width: 0px;
height: 0px;
display: flex;
align-items: center;
justify-content: center;
border-left: 28px solid var(--border-color);
border-right: 0;
transform: rotate(180deg);
}
2025-01-06 11:53:18 -06:00
}
.best-posts__post {
font-weight: normal;
font-size: 16px;
width: 100%;
text-align: left;
}
.best-posts__metadata {
font-weight: normal;
font-size: 12px;
display: flex;
gap: 10px;
color: var(--primary-700);
align-items: center;
}
.best-posts__likes,
.best-posts__replies {
border: 1px solid var(--primary-200);
padding: 3px 8px;
2025-01-10 14:26:35 -06:00
border-radius: var(--rewind-border-radius);
2025-01-06 11:53:18 -06:00
display: flex;
gap: 5px;
align-items: center;
svg {
color: var(--primary-700);
}
}
2025-01-03 17:25:18 +01:00
}