-
Notifications
You must be signed in to change notification settings - Fork 1
/
statusBar.css
57 lines (53 loc) · 1004 Bytes
/
statusBar.css
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
.status-bar {
display: inline-block;
position: absolute;
background-color: var(--page-bg, #fefefe);
cursor: default;
}
.status-bar > * {
border: 1px solid var(--status-bar-border-color, #a9aaaf);
}
.status-bar.top-left {
top: 0;
left: 0;
}
.status-bar.top-left > * {
border-top: none;
border-left: none;
}
.status-bar.top-left :last-of-type {
border-bottom-right-radius: 3px;
}
.status-bar.top-right {
top: 0;
right: 0;
}
.status-bar.top-right > * {
border-top: none;
border-right: none;
}
.status-bar.top-right :last-of-type {
border-bottom-left-radius: 3px;
}
.status-bar.bottom-right {
bottom: 0;
right: 0;
}
.status-bar.bottom-right > * {
border-bottom: none;
border-right: none;
}
.status-bar.bottom-right :last-of-type {
border-top-left-radius: 3px;
}
.status-bar.bottom-left {
bottom: 0;
left: 0;
}
.status-bar.bottom-left > * {
border-bottom: none;
border-left: none;
}
.status-bar.bottom-left :last-of-type {
border-top-right-radius: 3px;
}