forked from zombieFox/nightTab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgreeting.css
More file actions
executable file
·37 lines (33 loc) · 767 Bytes
/
Copy pathgreeting.css
File metadata and controls
executable file
·37 lines (33 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.greeting {
margin: 0;
padding: 0;
font-size: 1em;
font-family: var(--theme-font-display-name);
font-weight: var(--theme-font-display-weight);
font-style: var(--theme-font-display-style);
color: rgb(var(--theme-style-text));
display: inline-flex;
flex-direction: row;
justify-content: center;
flex-wrap: nowrap;
line-height: 1.2;
}
.is-header-item-justify-left .greeting {
justify-content: flex-start;
text-align: left;
}
.is-header-item-justify-center .greeting {
justify-content: center;
text-align: center;
}
.is-header-item-justify-right .greeting {
justify-content: flex-end;
text-align: right;
}
.greeting-item {
font-size: 1.5em;
max-width: 100%;
display: flex;
justify-content: center;
align-items: center;
}