forked from ZyntariHQ/Invoisio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
91 lines (90 loc) · 3.63 KB
/
Copy pathstyles.css
File metadata and controls
91 lines (90 loc) · 3.63 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
:root {
color-scheme: light;
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
line-height: 1.5;
--bg: #f4f6fb;
--card: #ffffff;
--text: #111827;
--muted: #64748b;
--accent: #2563eb;
--accent-soft: rgba(37, 99, 235, 0.12);
--border: #dbe4f0;
}
* { box-sizing: border-box; }
body {
margin: 0;
background: var(--bg);
color: var(--text);
}
.shell { max-width: 1120px; margin: 0 auto; padding: 2rem; }
.hero {
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
}
.eyebrow { text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); font-weight: 700; margin: 0 0 0.25rem; }
.subtitle { color: var(--muted); max-width: 640px; }
.toggle { display: flex; gap: 0.5rem; }
.toggle-button {
border: 1px solid var(--border);
background: var(--card);
color: var(--text);
padding: 0.65rem 1rem;
border-radius: 999px;
cursor: pointer;
}
.toggle-button.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.view-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 1.25rem; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06); }
.hidden { display: none; }
.summary-grid {
display: grid;
gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
margin-bottom: 1rem;
}
.summary-tile { border: 1px solid var(--border); border-radius: 12px; padding: 0.95rem; background: linear-gradient(135deg, var(--accent-soft), #fff); }
.summary-tile strong { display: block; font-size: 1.1rem; margin-top: 0.4rem; }
.chart-list { display: grid; gap: 0.8rem; }
.chart-row { display: grid; grid-template-columns: 110px 1fr 70px; align-items: center; gap: 0.75rem; }
.bar-track { height: 10px; border-radius: 999px; overflow: hidden; background: var(--bg); }
.bar-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--accent), #60a5fa); }
.metric-pill { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.4rem 0.7rem; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-size: 0.9rem; }
.dual-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
@media (max-width: 780px) { .hero { flex-direction: column; align-items: flex-start; } }
.section-heading { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; }
.sync-center { margin-top: 1.5rem; }
.summary-tile.danger { background: linear-gradient(135deg, rgba(220, 38, 38, 0.14), #fff); }
.summary-tile.warning { background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), #fff); }
.draft-list { display: grid; gap: 0.9rem; margin-top: 1rem; }
.draft-card {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 1rem;
align-items: center;
border: 1px solid var(--border);
border-left: 6px solid var(--accent);
border-radius: 14px;
padding: 1rem;
background: #fff;
}
.draft-card.danger { border-left-color: #dc2626; }
.draft-card.warning { border-left-color: #d97706; }
.draft-card.info { border-left-color: var(--accent); }
.draft-title { font-weight: 800; }
.draft-card p { margin: 0.35rem 0; color: var(--muted); }
.draft-card small { color: var(--muted); }
.recovery-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.5rem; }
.recovery-actions button {
border: 1px solid var(--border);
border-radius: 999px;
background: var(--bg);
color: var(--text);
cursor: pointer;
padding: 0.55rem 0.8rem;
}
@media (max-width: 780px) {
.section-heading, .draft-card { grid-template-columns: 1fr; }
.recovery-actions { justify-content: flex-start; }
}