owncast/web/components/ui/OfflineBanner/OfflineBanner.module.scss
gingervitis 44483a45d3
some webv2 UI polish (#2940)
* style tweaks for Action Button, UserMenu, Modal

* a bunch of misc polish; some around chat

* Prettified Code!

* cleanup

* fix formatting

* Reduce content padding a bit

* some stylesheet cleanup

* fix action button sizing

* Remove action button height completely

---------

Co-authored-by: gingervitis <gingervitis@users.noreply.github.com>
Co-authored-by: Gabe Kangas <gabek@real-ity.com>
2023-04-24 10:58:57 -07:00

62 lines
1,011 B
SCSS

@import '../../../styles/mixins.scss';
.outerContainer {
display: flex;
justify-content: center;
}
.innerContainer {
width: clamp(00px, 100%, 600px);
display: flex;
flex-direction: column;
color: var(--theme-color-background-main);
margin: 3rem auto;
padding: 2.4em;
@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: .8rem;
color: var(--theme-color-palette-8);
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);
}
}