mirror of
https://github.com/owncast/owncast.git
synced 2024-12-20 00:11:27 +03:00
32c3f6a9b6
* fix: #2668 Page Vertical Spacing Issues * Update test to reflect mobile work * chore: refactor action buttons --------- Co-authored-by: thisProjects <wibbet@wobbet.com> Co-authored-by: Gabe Kangas <gabek@real-ity.com>
71 lines
1.1 KiB
SCSS
71 lines
1.1 KiB
SCSS
@import '../../../styles/mixins.scss';
|
|
|
|
.outerContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
@include screen(tablet) {
|
|
height: 430px;
|
|
}
|
|
|
|
@include screen (mobile) {
|
|
height: 280px;
|
|
}
|
|
}
|
|
|
|
.innerContainer {
|
|
width: clamp(00px, 100%, 600px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 3rem auto;
|
|
padding: 2.4em;
|
|
color: var(--color-owncast-palette-3);
|
|
|
|
@include screen(tablet) {
|
|
font-size: 1.2rem;
|
|
padding: 1em;
|
|
margin: 1rem 0.2rem;
|
|
}
|
|
}
|
|
|
|
.bodyText {
|
|
line-height: 2rem;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.separator {
|
|
margin-top: 15px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.lastLiveDate {
|
|
margin-top: 2rem;
|
|
font-size: 0.8rem;
|
|
opacity: 0.7;
|
|
font-family: var(--theme-text-body-font-family);
|
|
font-weight: 300;
|
|
|
|
.clockIcon {
|
|
margin-right: 6px;
|
|
}
|
|
}
|
|
|
|
.header {
|
|
font-family: var(--theme-text-display-font-family);
|
|
font-weight: 600;
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.actionLink {
|
|
color: var(--theme-color-action);
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: var(--color-owncast-palette-7);
|
|
}
|
|
}
|