mirror of
https://github.com/owncast/owncast.git
synced 2025-01-08 01:27:31 +03:00
d5fa81f76e
* color experimentation and troubleshooting * create color scheme, assign colors, more ant overrides * fun selection color * Prettified Code! * Correctly import opensans * Prettified Code! * Organize+standardize colors/names and update the app to use them * Prettified Code! * Use css var references instead of resolving value of vars in css files * Prettified Code! Co-authored-by: gingervitis <gingervitis@users.noreply.github.com> Co-authored-by: Gabe Kangas <gabek@real-ity.com> Co-authored-by: gabek <gabek@users.noreply.github.com>
59 lines
958 B
SCSS
59 lines
958 B
SCSS
.root {
|
|
position: relative;
|
|
display: grid;
|
|
padding: 20px;
|
|
}
|
|
|
|
.buttonsLogoTitleSection {
|
|
// margin-left: 1.5vw;
|
|
// margin-right: 1.5vw;
|
|
}
|
|
|
|
.row {
|
|
margin-bottom: 7px;
|
|
}
|
|
|
|
.logoTitleSection {
|
|
display: flex;
|
|
@media (max-width: 768px) {
|
|
flex-direction: column;
|
|
.logo {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-bottom: 10px;
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.titleSection {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-left: 10px;
|
|
|
|
.title {
|
|
font-family: var(--theme-text-display-font-family);
|
|
color: var(--theme-color-palette-0);
|
|
font-size: 32px;
|
|
font-weight: bold;
|
|
line-height: 30px;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 22px;
|
|
font-weight: 300;
|
|
line-height: 1.3;
|
|
color: var(--theme-color-background-header);
|
|
}
|
|
}
|
|
|
|
.tagList {
|
|
color: var(--theme-color-palette-10);
|
|
|
|
span {
|
|
display: inline-block;
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
}
|