mirror of
https://github.com/zombieFox/nightTab.git
synced 2024-11-23 08:33:38 +01:00
23 lines
417 B
CSS
Executable File
23 lines
417 B
CSS
Executable File
.greeting {
|
|
margin: 0;
|
|
padding: 0;
|
|
border-radius: var(--radius);
|
|
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;
|
|
}
|
|
|
|
.greeting-item {
|
|
font-size: 1.5em;
|
|
max-width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|