nightTab/css/greeting.css

34 lines
646 B
CSS
Executable File

.greeting {
margin: 0;
padding: 0;
font-size: 1em;
font-family: var(--font-fjalla);
color: rgb(var(--style-neutral-text));
width: 100%;
min-height: 2.5em;
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: nowrap;
}
.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;
}
.greeting-item {
font-size: 1.5em;
max-width: 100%;
display: flex;
justify-content: center;
align-items: center;
}