2022-10-22 11:45:54 +03:00
|
|
|
@import '../../../styles/mixins.scss';
|
|
|
|
|
2023-04-24 20:58:57 +03:00
|
|
|
$vert-spacing: 0.75rem;
|
|
|
|
|
2022-08-17 03:49:21 +03:00
|
|
|
.root {
|
|
|
|
position: relative;
|
|
|
|
display: grid;
|
2023-04-24 20:58:57 +03:00
|
|
|
padding: var(--content-padding);
|
2023-04-27 07:24:26 +03:00
|
|
|
padding-left: var(--content-padding);
|
|
|
|
padding-right: var(--content-padding);
|
2023-04-30 23:34:30 +03:00
|
|
|
padding-top: calc(var(--content-padding) * 0.5);
|
2023-05-05 22:20:50 +03:00
|
|
|
color: var(--theme-color-components-text-on-light);
|
2022-08-17 03:49:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.row {
|
2023-04-24 20:58:57 +03:00
|
|
|
margin-bottom: $vert-spacing;
|
2022-08-17 03:49:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.logoTitleSection {
|
|
|
|
display: flex;
|
2022-10-22 22:08:38 +03:00
|
|
|
flex-direction: column;
|
|
|
|
.logo {
|
|
|
|
margin: auto 0.6rem;
|
|
|
|
}
|
2023-04-24 20:58:57 +03:00
|
|
|
|
2022-10-22 11:45:54 +03:00
|
|
|
@include screen(desktop) {
|
2022-10-22 22:08:38 +03:00
|
|
|
flex-direction: row;
|
2022-08-17 03:49:21 +03:00
|
|
|
.logo {
|
2022-10-22 22:08:38 +03:00
|
|
|
margin: 0.6rem;
|
2022-08-17 03:49:21 +03:00
|
|
|
}
|
|
|
|
}
|
2022-11-07 03:09:05 +03:00
|
|
|
|
2023-04-24 20:58:57 +03:00
|
|
|
@include screen(tablet) {
|
2022-11-07 03:09:05 +03:00
|
|
|
align-items: center;
|
2023-04-24 20:58:57 +03:00
|
|
|
.logo {
|
|
|
|
margin: 1.2rem auto;
|
|
|
|
}
|
2022-11-07 03:09:05 +03:00
|
|
|
}
|
2022-08-17 03:49:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.titleSection {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-09-14 09:37:45 +03:00
|
|
|
margin-left: 0.6rem;
|
2023-04-24 20:58:57 +03:00
|
|
|
@include screen(tablet) {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2022-08-17 03:49:21 +03:00
|
|
|
|
|
|
|
.title {
|
2022-08-30 09:17:12 +03:00
|
|
|
font-family: var(--theme-text-display-font-family);
|
2023-04-24 20:58:57 +03:00
|
|
|
font-size: 1.8rem;
|
|
|
|
font-weight: 600;
|
2022-08-17 03:49:21 +03:00
|
|
|
line-height: 30px;
|
2023-02-14 09:00:53 +03:00
|
|
|
margin: unset;
|
2022-08-17 03:49:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.subtitle {
|
2023-04-24 20:58:57 +03:00
|
|
|
font-size: 1.15rem;
|
|
|
|
font-weight: 300;
|
2022-09-10 22:08:22 +03:00
|
|
|
max-width: 900px;
|
2023-04-24 20:58:57 +03:00
|
|
|
margin: $vert-spacing 0;
|
2022-08-17 03:49:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tagList {
|
2022-08-30 09:17:12 +03:00
|
|
|
color: var(--theme-color-palette-10);
|
2022-08-17 03:49:21 +03:00
|
|
|
|
|
|
|
span {
|
|
|
|
display: inline-block;
|
2022-09-14 09:37:45 +03:00
|
|
|
margin-right: 0.5rem;
|
2023-04-24 20:58:57 +03:00
|
|
|
font-weight: 400;
|
2022-08-17 03:49:21 +03:00
|
|
|
}
|
|
|
|
}
|