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