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
·57 lines (50 loc) · 946 Bytes
/
Copy pathdate.css
File metadata and controls
executable file
·57 lines (50 loc) · 946 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
.date {
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: flex-start;
flex-wrap: nowrap;
}
.date-separator,
.date-date,
.date-day,
.date-month,
.date-year {
font-size: 1.5em;
display: flex;
justify-content: flex-start;
align-items: center;
}
.date-separator {
min-width: 0.5em;
color: rgb(var(--accent));
}
.date-date,
.date-day,
.date-month,
.date-year {
min-width: 1.25em;
}
.date [class^="date-"]:not(:first-child),
.date [class*=" date-"]:not(:first-child) {
margin-left: 0.125em;
}
.date [class^="date-"]:not(:last-child),
.date [class*=" date-"]:not(:last-child) {
margin-right: 0.125em;
}
.date-day {
color: rgb(var(--style-neutral-text));
}
.date-date,
.date-month,
.date-year {
color: rgb(var(--gray-19));
}