2019-03-26 00:31:51 +01:00
|
|
|
.greeting {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 1em;
|
|
|
|
font-family: var(--font-fjalla);
|
2019-04-01 17:11:39 +02:00
|
|
|
color: rgb(var(--style-neutral-text));
|
2019-03-26 00:31:51 +01:00
|
|
|
width: 100%;
|
|
|
|
min-height: 2.5em;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
}
|
|
|
|
|
2019-06-13 16:47:00 +02:00
|
|
|
.is-header-item-alignment-horizontal-left .greeting {
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-header-item-alignment-horizontal-center .greeting {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-header-item-alignment-horizontal-right .greeting {
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
2019-03-26 00:31:51 +01:00
|
|
|
.greeting-item {
|
|
|
|
font-size: 1.5em;
|
|
|
|
max-width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|