-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (54 loc) · 1.05 KB
/
styles.css
File metadata and controls
64 lines (54 loc) · 1.05 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
/* Technical "Paper & Ink" foundation */
:root {
--paper: #FAF9F6;
--ink: #121212;
--border: #EBEBEB;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background-color: var(--paper);
color: var(--ink);
line-height: 1.4;
-webkit-font-smoothing: antialiased;
}
/* Technical Mono for Data */
.mono {
font-family: 'JetBrains Mono', monospace;
}
/* Remove all rounded corners */
.chakra-button,
.chakra-card,
.chakra-badge,
.chakra-menu__menu-list,
.chakra-menu__menu-item,
.chakra-tag,
.chakra-switch__track {
border-radius: 0 !important;
}
/* Professional Scrollbar */
::-webkit-scrollbar {
width: 2px;
height: 2px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-thumb:hover {
background: rgba(0, 0, 0, 0.1);
}
/* Table refinements */
table {
border-collapse: collapse;
}
/* Subtle Hover */
.technical-row:hover {
background-color: rgba(0, 0, 0, 0.01);
}