-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
67 lines (61 loc) · 1.92 KB
/
Copy pathindex.css
File metadata and controls
67 lines (61 loc) · 1.92 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
66
67
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700;800&display=block');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--color-primary: #000000;
--color-secondary: #0f172a;
--color-accent: #8b5cf6;
--color-accent-light: #a78bfa;
--color-accent-dark: #7c3aed;
}
@layer base {
/* Wireframe Containment Primitives */
* {
/* Remove soft box-shadows globally without breaking focus rings */
--tw-shadow: 0 0 #0000 !important;
--tw-shadow-colored: 0 0 #0000 !important;
}
}
@layer components {
/* Replace smooth, rounded corners across UI blocks */
.rounded-3xl, .rounded-2xl, .rounded-xl, .rounded-lg, .rounded-md, .rounded {
border-radius: 0.125rem !important; /* rounded-sm */
}
/* Implement razor-thin, semi-translucent borders for layout elements */
.border-white\/20, .border-white\/10, .border-gray-100, .border-gray-200 {
border-color: rgba(255, 255, 255, 0.05) !important;
}
}
@layer utilities {
.contain-layout { contain: layout; }
.contain-paint { contain: paint; }
.contain-style { contain: style; }
.content-visibility-auto { content-visibility: auto; }
.custom-scrollbar::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background-color: rgba(156, 163, 175, 0.3);
border-radius: 20px;
}
.dark .custom-scrollbar::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.1);
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background-color: rgba(156, 163, 175, 0.5);
}
.dark .custom-scrollbar::-webkit-scrollbar-thumb:hover {
background-color: rgba(255, 255, 255, 0.2);
}
}
@keyframes shimmer {
100% {
transform: translateX(100%);
}
}