-
Notifications
You must be signed in to change notification settings - Fork 0
/
devnull.css
73 lines (58 loc) · 867 Bytes
/
devnull.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
body {
margin: 0 2rem;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #0f0f0f;
color: #f0f0f0;
}
button {
color: #f0f0f0;
}
}
.container {
display: flex;
}
.v-container {
display: flex;
flex-direction: column;
}
#header {
justify-content: space-between;
>div {
margin: 1rem 0;
}
}
button {
background-color: transparent;
border: none;
padding: 0;
cursor: pointer;
}
ol {
list-style: none;
}
.group:not(:nth-last-child(2)) {
margin-bottom: 2rem;
}
.group-header {
column-gap: 1rem;
margin-bottom: 1rem;
}
.group-tab-count {
margin: 0;
}
.restore-button+.delete-button {
margin-left: 0.5rem;
}
.tab {
color: royalblue;
text-decoration: none;
}
.tab-remove-button {
visibility: hidden;
margin-left: 0.5rem;
}
.tab-item:hover .tab-remove-button {
visibility: visible;
}