43 lines
1.0 KiB
SCSS
Raw Permalink Normal View History

2025-01-13 17:30:47 -06:00
.rewind-report-container {
perspective: 1000px;
2025-01-03 11:44:06 -06:00
--ambientAmount: 0.1;
--easeAmount: 0;
animation: ambientMovement;
animation-duration: 24s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
2025-01-03 16:51:46 -06:00
.rewind-card {
background-color: var(--secondary);
2025-01-06 11:53:18 -06:00
border: 1px solid var(--primary-300);
2025-01-10 14:26:35 -06:00
border-radius: var(--rewind-border-radius);
2025-01-06 11:53:18 -06:00
background-size: cover;
2025-01-03 16:51:46 -06:00
display: flex;
flex-direction: column;
text-align: center;
padding: 1em;
box-sizing: border-box;
align-items: center;
justify-content: center;
2025-01-10 14:26:35 -06:00
width: 100%;
max-width: 700px;
2025-01-03 11:44:06 -06:00
&__title {
2025-01-10 21:08:47 -06:00
font-family: var(--jersey-heading) !important;
2025-01-03 11:44:06 -06:00
font-weight: 600;
2025-01-10 21:08:47 -06:00
font-size: var(--font-up-3);
2025-01-03 20:20:20 -06:00
-webkit-font-smoothing: antialiased;
2025-01-10 21:10:14 -06:00
@media screen and (max-width: 525px) {
font-size: var(--font-up-2);
}
2025-01-13 20:00:12 -06:00
@media screen and (max-width: 475px) {
2025-01-12 15:32:46 -06:00
font-size: var(--font-up-0);
}
2025-01-03 11:44:06 -06:00
}
&__data {
font-weight: normal;
2025-01-10 21:08:47 -06:00
font-size: 16px;
2025-01-03 20:20:20 -06:00
-webkit-font-smoothing: antialiased;
2025-01-03 11:44:06 -06:00
}
}