-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathglobals.css
More file actions
58 lines (50 loc) · 900 Bytes
/
globals.css
File metadata and controls
58 lines (50 loc) · 900 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
58
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
}
tr.rt-TableRow:nth-child(even) {
background-color: var(--gray-2);
}
.overlay {
position: fixed;
cursor: pointer;
top: 4rem;
right: 2rem;
padding: 1rem;
background: var(--gray-2);
border: 1px solid #bbb;
border-radius: 0.5rem;
opacity: 0.8;
transition: all 0.2s;
z-index: 100;
width: 25%;
overflow-x: hidden;
overflow-y: hidden;
max-height: 3.5rem;
}
.overlay.open {
max-height: 80%;
}
.overlay-header {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 1rem;
}
.overlay:hover {
opacity: 1;
}