mirror of
https://github.com/documize/community.git
synced 2025-07-18 20:59:43 +02:00
31 lines
466 B
SCSS
31 lines
466 B
SCSS
// Headings
|
|
.master-page-heading {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
color: map-get($gray-shades, 800);
|
|
}
|
|
|
|
.master-page-desc {
|
|
font-size: 1.2rem;
|
|
font-weight: 400;
|
|
color: map-get($gray-shades, 800);
|
|
}
|
|
|
|
.logo-heading {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
> .icon, > .meta-icon, > .meta-logo {
|
|
align-self: center;
|
|
margin-right: 25px;
|
|
|
|
> i {
|
|
font-size: 3.5rem;
|
|
color: map-get($gray-shades, 600);
|
|
}
|
|
}
|
|
|
|
> .text {
|
|
align-self: flex-start;
|
|
}
|
|
}
|