This repository was archived by the owner on Aug 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
65 lines (52 loc) · 1.2 KB
/
index.css
File metadata and controls
65 lines (52 loc) · 1.2 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root {
--text: #0f0f0f;
--bg: #f2f3f5;
--search-bg: #dfe0e2;
--selected-bg: rgba(0, 0, 0, 0.1);
--bottom-bg: #212121;
--bottom-height: 0rem;
--button-unchecked: #808080;
}
body {
font-family: "Noto Sans" !important;
}
dialog::backdrop {
background-color: rgba(0, 0, 0, 0.5);
}
.color {
color: var(--text);
background-color: var(--bg);
}
.color-cmdP {
color: var(--text);
background: var(--search-bg)
}
.color-selected {
background-color: var(--selected-bg);
}
.color-bottom {
background-color: var(--bottom-bg);
}
#textarea {
height: calc(100% - var(--bottom-height));
}
.hidden {
display: none !important;
}
.height-zero {
height: 0 !important;
display: none !important;
}
.hide-scrollbar {
scrollbar-width: none;
}
.small-width {
padding: 1rem 20% !important;
}
.toggle {
color: var(--button-unchecked) !important;
box-shadow: var(--handleoffsetcalculator) 0 0 2px var(--bg) inset,
0 0 0 2px var(--bg) inset,
var(--togglehandleborder) !important
}