forked from Northgate-Systems/RemitX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
71 lines (62 loc) · 1.31 KB
/
Copy pathindex.css
File metadata and controls
71 lines (62 loc) · 1.31 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
@import "tailwindcss";
@theme {
--color-primary: #4F46E5;
--color-primary-hover: #4338CA;
--color-secondary: #06B6D4;
--color-accent: #10B981;
--color-card: rgba(15, 23, 42, 0.5);
--color-border: #1E293B;
--font-sans: "Inter", system-ui, -apple-system, sans-serif;
--font-mono: "JetBrains Mono", monospace;
}
body {
background-color: #020617;
color: #CBD5E1;
-webkit-font-smoothing: antialiased;
}
.sleek-card {
background: var(--color-card);
backdrop-filter: blur(16px);
border: 1px solid var(--color-border);
border-radius: 1.5rem;
}
.mobile-container {
width: 100%;
min-height: 100vh;
position: relative;
background-color: #020617;
}
.dashboard-layout {
display: flex;
min-height: 100vh;
background-color: #020617;
}
.sidebar {
width: 280px;
background-color: rgb(15, 23, 42, 0.5);
border-right: 1px solid #1e293b;
backdrop-filter: blur(16px);
display: flex;
flex-direction: column;
padding: 2rem 1.5rem;
position: sticky;
top: 0;
height: 100vh;
}
.main-content {
flex: 1;
padding: 2.5rem;
max-width: 1200px;
margin: 0 auto;
width: 100%;
}
@media (max-width: 768px) {
.sidebar {
display: none;
}
}
.text-gradient {
background: linear-gradient(to right, #6366F1, #06B6D4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}