-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
140 lines (111 loc) · 3.06 KB
/
index.css
File metadata and controls
140 lines (111 loc) · 3.06 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--font-sans: 'Inter', system-ui, -apple-system, sans-serif;
--background: 40 30% 96%;
--foreground: 200 18% 16%;
--card: 0 0% 100%;
--card-foreground: 200 18% 16%;
--popover: 0 0% 100%;
--popover-foreground: 200 18% 16%;
--primary: 174 42% 36%;
--primary-foreground: 0 0% 100%;
--secondary: 40 20% 92%;
--secondary-foreground: 200 18% 20%;
--muted: 40 18% 94%;
--muted-foreground: 200 10% 46%;
--accent: 174 30% 92%;
--accent-foreground: 174 42% 26%;
--destructive: 0 72% 51%;
--destructive-foreground: 0 0% 100%;
--border: 40 14% 89%;
--input: 40 14% 89%;
--ring: 174 42% 36%;
--radius: 0.625rem;
--sidebar-background: 174 28% 18%;
--sidebar-foreground: 174 15% 75%;
--sidebar-primary: 174 50% 55%;
--sidebar-primary-foreground: 0 0% 100%;
--sidebar-accent: 174 20% 24%;
--sidebar-accent-foreground: 174 15% 90%;
--sidebar-border: 174 20% 22%;
--sidebar-ring: 174 50% 55%;
--topbar-height: 3.5rem;
}
.dark {
--background: 200 18% 8%;
--foreground: 40 20% 92%;
--card: 200 16% 11%;
--card-foreground: 40 20% 92%;
--popover: 200 16% 11%;
--popover-foreground: 40 20% 92%;
--primary: 174 42% 42%;
--primary-foreground: 0 0% 100%;
--secondary: 200 14% 16%;
--secondary-foreground: 40 20% 88%;
--muted: 200 14% 14%;
--muted-foreground: 200 10% 55%;
--accent: 174 20% 18%;
--accent-foreground: 174 30% 80%;
--destructive: 0 62% 45%;
--destructive-foreground: 0 0% 100%;
--border: 200 14% 18%;
--input: 200 14% 18%;
--ring: 174 42% 42%;
--sidebar-background: 200 18% 7%;
--sidebar-foreground: 200 10% 65%;
--sidebar-primary: 174 42% 42%;
--sidebar-primary-foreground: 0 0% 100%;
--sidebar-accent: 200 14% 14%;
--sidebar-accent-foreground: 40 20% 92%;
--sidebar-border: 200 14% 14%;
--sidebar-ring: 174 42% 42%;
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground font-sans antialiased;
}
}
/* Gantt weekend highlighting */
.weekend-cell {
background-color: hsl(var(--muted) / 0.45) !important;
}
/* Resource panel cells */
.gantt-res-cell {
display: flex;
align-items: center;
justify-content: center;
}
.gantt-res-cell--ok {
background-color: hsl(var(--accent) / 0.3) !important;
}
.gantt-res-cell--over {
background-color: hsl(var(--destructive) / 0.12) !important;
}
/* Resource timeline badges */
.gantt-res-badge {
display: inline-flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
border-radius: 9999px;
font-size: 11px;
font-weight: 600;
line-height: 1;
}
.gantt-res-badge--ok {
background-color: hsl(var(--primary));
color: hsl(var(--primary-foreground));
}
.gantt-res-badge--over {
background-color: hsl(var(--destructive));
color: hsl(var(--destructive-foreground));
}