mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
69 lines
864 B
SCSS
69 lines
864 B
SCSS
@import 'responsive.scss';
|
|
|
|
// Animations
|
|
.warning {
|
|
&-enter-from,
|
|
&-leave-to {
|
|
opacity: 0;
|
|
}
|
|
|
|
&-enter-active {
|
|
transition: all 100ms ease-out;
|
|
}
|
|
|
|
&-leave-active {
|
|
transition: all 100ms ease-out;
|
|
}
|
|
}
|
|
|
|
.journal-list-anim {
|
|
&-enter-active,
|
|
&-leave-active {
|
|
transition: all 0.5s ease;
|
|
}
|
|
|
|
&-enter-from,
|
|
&-leave-to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
//Styles
|
|
.journal-wrapper {
|
|
width: 1350px;
|
|
padding: 1em 0;
|
|
}
|
|
|
|
.journal_warning {
|
|
text-align: center;
|
|
font-size: 1.3em;
|
|
|
|
&.error {
|
|
background-color: var(--clr-error);
|
|
}
|
|
}
|
|
|
|
.schedule-dates > * {
|
|
margin-right: 0.25em;
|
|
}
|
|
|
|
.journal_item,
|
|
.journal_warning,
|
|
.journal_loading {
|
|
background: #202020;
|
|
padding: 1em;
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.journal_loading {
|
|
text-align: center;
|
|
font-size: 1.35em;
|
|
|
|
}
|
|
|
|
@include smallScreen() {
|
|
.journal-wrapper {
|
|
font-size: 1.25em;
|
|
}
|
|
}
|