2022-10-22 10:45:54 +02:00
|
|
|
@import '../../../styles/mixins.scss';
|
|
|
|
|
2022-08-17 02:49:21 +02:00
|
|
|
.root {
|
|
|
|
position: relative;
|
|
|
|
display: grid;
|
2022-09-14 08:37:45 +02:00
|
|
|
padding: 1.4rem;
|
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;
|
|
|
|
}
|
2022-10-22 10:45:54 +02:00
|
|
|
@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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.titleSection {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-09-14 08:37:45 +02:00
|
|
|
margin-left: 0.6rem;
|
2022-08-17 02:49:21 +02:00
|
|
|
|
|
|
|
.title {
|
2022-08-30 08:17:12 +02:00
|
|
|
font-family: var(--theme-text-display-font-family);
|
|
|
|
color: var(--theme-color-palette-0);
|
2022-10-22 10:45:54 +02:00
|
|
|
font-size: 1.7rem;
|
2022-08-17 02:49:21 +02:00
|
|
|
font-weight: bold;
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.subtitle {
|
2022-10-22 10:45:54 +02:00
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: 400;
|
2022-08-30 08:17:12 +02:00
|
|
|
line-height: 1.3;
|
|
|
|
color: var(--theme-color-background-header);
|
2022-09-10 21:08:22 +02:00
|
|
|
max-width: 900px;
|
2022-08-17 02:49:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tagList {
|
2022-08-30 08:17:12 +02:00
|
|
|
color: var(--theme-color-palette-10);
|
2022-08-17 02:49:21 +02:00
|
|
|
|
|
|
|
span {
|
|
|
|
display: inline-block;
|
2022-09-14 08:37:45 +02:00
|
|
|
margin-right: 0.5rem;
|
|
|
|
font-size: 0.9rem;
|
2022-08-30 08:17:12 +02:00
|
|
|
font-weight: 500;
|
2022-08-17 02:49:21 +02:00
|
|
|
}
|
|
|
|
}
|