2023-06-21 06:56:37 +03:00
|
|
|
@import '../../../styles/mixins';
|
2023-01-30 04:34:01 +03:00
|
|
|
|
2022-05-26 08:52:27 +03:00
|
|
|
.outerContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2023-04-27 01:31:23 +03:00
|
|
|
align-items: center;
|
2022-05-26 08:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.innerContainer {
|
2022-09-10 09:23:24 +03:00
|
|
|
width: clamp(00px, 100%, 600px);
|
2022-05-26 08:52:27 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-05-07 02:29:35 +03:00
|
|
|
margin: 5vh auto;
|
2023-01-30 03:29:12 +03:00
|
|
|
padding: 2.4em;
|
2023-01-30 04:34:01 +03:00
|
|
|
|
|
|
|
@include screen(tablet) {
|
|
|
|
font-size: 1.2rem;
|
|
|
|
padding: 1em;
|
2023-02-23 05:07:12 +03:00
|
|
|
margin: 1rem 0.2rem;
|
2023-01-30 04:34:01 +03:00
|
|
|
}
|
2022-10-09 01:05:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.bodyText {
|
2023-01-29 06:26:12 +03:00
|
|
|
line-height: 2rem;
|
2023-04-26 19:40:17 +03:00
|
|
|
font-size: 1.2rem;
|
2022-10-09 01:05:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.separator {
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lastLiveDate {
|
2023-04-24 20:58:57 +03:00
|
|
|
margin-top: 2rem;
|
2023-04-26 19:40:17 +03:00
|
|
|
font-size: 0.8rem;
|
|
|
|
opacity: 0.7;
|
2023-01-30 03:29:12 +03:00
|
|
|
font-family: var(--theme-text-body-font-family);
|
2023-04-26 19:40:17 +03:00
|
|
|
font-weight: 300;
|
2022-10-09 01:05:52 +03:00
|
|
|
|
|
|
|
.clockIcon {
|
2023-04-24 20:58:57 +03:00
|
|
|
margin-right: 6px;
|
2022-10-09 01:05:52 +03:00
|
|
|
}
|
2022-05-26 08:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
2023-04-26 19:40:17 +03:00
|
|
|
font-family: var(--theme-text-display-font-family);
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 1.4rem;
|
2022-05-26 08:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
2022-10-09 01:05:52 +03:00
|
|
|
margin-top: 15px;
|
2022-05-26 08:52:27 +03:00
|
|
|
}
|
2022-10-25 08:23:01 +03:00
|
|
|
|
|
|
|
.actionLink {
|
|
|
|
color: var(--theme-color-action);
|
|
|
|
text-decoration: underline;
|
|
|
|
cursor: pointer;
|
2023-06-21 06:56:37 +03:00
|
|
|
|
2022-10-25 08:23:01 +03:00
|
|
|
&:hover {
|
|
|
|
color: var(--color-owncast-palette-7);
|
|
|
|
}
|
|
|
|
}
|