forked from zombieFox/nightTab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdate.css
More file actions
executable file
·75 lines (63 loc) · 1.27 KB
/
Copy pathdate.css
File metadata and controls
executable file
·75 lines (63 loc) · 1.27 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.date {
margin: 0;
padding: 0;
font-size: 1em;
font-family: var(--font-display);
color: rgb(var(--theme-style-text));
width: 100%;
min-height: 2.5em;
display: flex;
flex-direction: row;
justify-content: flex-start;
flex-wrap: wrap;
}
.is-header-item-alignment-left .date {
justify-content: flex-start;
}
.is-header-item-alignment-center .date {
justify-content: center;
}
.is-header-item-alignment-right .date {
justify-content: flex-end;
}
.date-separator,
.date-date,
.date-day,
.date-month,
.date-year {
font-size: 1.5em;
display: flex;
justify-content: flex-start;
align-items: center;
white-space: nowrap;
}
.date-separator {
justify-content: center;
color: rgb(var(--theme-accent));
}
.date-date,
.date-day,
.date-month,
.date-year {
justify-content: center;
}
.is-header-item-alignment-left .date-item:not(:last-child) {
margin-right: 0.2em;
}
.is-header-item-alignment-center .date-item:not(:first-child) {
margin-left: 0.1em;
}
.is-header-item-alignment-center .date-item:not(:last-child) {
margin-right: 0.1em;
}
.is-header-item-alignment-right .date-item:not(:first-child) {
margin-left: 0.2em;
}
.date-day {
color: rgb(var(--theme-style-text));
}
.date-date,
.date-month,
.date-year {
color: rgb(var(--theme-color-16));
}