54 lines
852 B
SCSS
54 lines
852 B
SCSS
.outerContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.innerContainer {
|
|
width: clamp(00px, 100%, 600px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
color: var(--theme-color-components-text-on-light);
|
|
background-color: var(--theme-color-background-main);
|
|
margin: 1rem auto;
|
|
border-radius: var(--theme-rounded-corners);
|
|
padding: 1rem;
|
|
font-size: 1.2rem;
|
|
border: 1px solid lightgray;
|
|
}
|
|
|
|
.bodyText {
|
|
line-height: 1.5rem;
|
|
}
|
|
|
|
.separator {
|
|
margin-top: 15px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.lastLiveDate {
|
|
margin-top: 15px;
|
|
font-size: 1rem;
|
|
opacity: 0.5;
|
|
|
|
.clockIcon {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
|
|
.header {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.actionLink {
|
|
color: var(--theme-color-action);
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: var(--color-owncast-palette-7);
|
|
}
|
|
}
|