You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
890 B
57 lines
890 B
.root { |
|
position: relative; |
|
display: grid; |
|
} |
|
|
|
.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; |
|
} |
|
} |
|
} |
|
|
|
.titleSection { |
|
display: flex; |
|
flex-direction: column; |
|
|
|
.title { |
|
font-size: 32px; |
|
font-weight: bold; |
|
color: black; |
|
text-transform: uppercase; |
|
line-height: 30px; |
|
} |
|
|
|
.subtitle { |
|
font-size: 24px; |
|
font-weight: 400; |
|
line-height: 22px; |
|
color: var(--theme-text-secondary); |
|
} |
|
} |
|
|
|
.tagList { |
|
font-family: var(--theme-text-display-font-family); |
|
color: var(--theme-text-primary); |
|
|
|
span { |
|
display: inline-block; |
|
margin-right: 8px; |
|
font-size: 14px; |
|
font-weight: 300; |
|
} |
|
}
|
|
|