owncast/web/components/common/ContentHeader/ContentHeader.module.scss

66 lines
1.0 KiB
SCSS
Raw Normal View History

@import '../../../styles/mixins.scss';
2022-08-17 02:49:21 +02:00
.root {
position: relative;
display: grid;
padding: 1.4rem;
2022-12-24 23:59:03 +01:00
padding-top: unset;
2022-08-17 02:49:21 +02:00
}
.row {
margin-bottom: 7px;
}
.logoTitleSection {
display: flex;
2022-10-22 21:08:38 +02:00
flex-direction: column;
.logo {
margin: auto 0.6rem;
}
@include screen(desktop) {
2022-10-22 21:08:38 +02:00
flex-direction: row;
2022-08-17 02:49:21 +02:00
.logo {
2022-10-22 21:08:38 +02:00
margin: 0.6rem;
2022-08-17 02:49:21 +02:00
}
}
@include screen(mobile) {
align-items: center;
}
2022-08-17 02:49:21 +02:00
}
.titleSection {
display: flex;
flex-direction: column;
margin-left: 0.6rem;
2022-08-17 02:49:21 +02:00
.title {
font-family: var(--theme-text-display-font-family);
color: var(--theme-color-palette-0);
font-size: 1.7rem;
2022-08-17 02:49:21 +02:00
font-weight: bold;
line-height: 30px;
margin: unset;
2022-08-17 02:49:21 +02:00
}
.subtitle {
font-size: 1.2rem;
font-weight: 400;
line-height: 1.3;
color: var(--theme-color-background-header);
2022-09-10 21:08:22 +02:00
max-width: 900px;
margin-top: 7px;
2022-08-17 02:49:21 +02:00
}
}
.tagList {
color: var(--theme-color-palette-10);
2022-08-17 02:49:21 +02:00
span {
display: inline-block;
margin-right: 0.5rem;
font-size: 0.9rem;
font-weight: 500;
2022-08-17 02:49:21 +02:00
}
}