mirror of
https://github.com/discourse/discourse-rewind.git
synced 2025-08-01 00:23:48 +00:00
43 lines
1.0 KiB
SCSS
43 lines
1.0 KiB
SCSS
.rewind-report-container {
|
|
perspective: 1000px;
|
|
--ambientAmount: 0.1;
|
|
--easeAmount: 0;
|
|
animation: ambientMovement;
|
|
animation-duration: 24s;
|
|
animation-iteration-count: infinite;
|
|
animation-timing-function: ease-in-out;
|
|
}
|
|
|
|
.rewind-card {
|
|
background-color: var(--secondary);
|
|
border: 1px solid var(--primary-300);
|
|
border-radius: var(--rewind-border-radius);
|
|
background-size: cover;
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
padding: 1em;
|
|
box-sizing: border-box;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
max-width: 700px;
|
|
&__title {
|
|
font-family: var(--jersey-heading) !important;
|
|
font-weight: 600;
|
|
font-size: var(--font-up-3);
|
|
-webkit-font-smoothing: antialiased;
|
|
@media screen and (max-width: 525px) {
|
|
font-size: var(--font-up-2);
|
|
}
|
|
@media screen and (max-width: 475px) {
|
|
font-size: var(--font-up-0);
|
|
}
|
|
}
|
|
&__data {
|
|
font-weight: normal;
|
|
font-size: 16px;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
}
|