File size: 2,111 Bytes
bf04727
 
 
 
 
b5e8a53
 
 
 
bf04727
 
a304e30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bf04727
 
 
 
 
 
 
b5e8a53
bf04727
b5e8a53
bf04727
 
 
 
 
 
 
 
b5e8a53
bf04727
 
b5e8a53
bf04727
 
 
b5e8a53
bf04727
 
b5e8a53
 
 
 
 
bf04727
b5e8a53
bf04727
 
b5e8a53
 
bf04727
 
b5e8a53
 
 
 
 
 
 
bf04727
 
b5e8a53
 
 
 
 
 
bf04727
 
 
 
 
 
 
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
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --background: #000000;
  --foreground: #ededed;
  --border: #1a1a1a;
  --accent: #0070f3;
}

[data-theme="light"] {
  --background: #f8f9fa;
  --foreground: #111111;
  --border: #e2e8f0;
  --accent: #6d28d9;
}

[data-theme="light"] body {
  background: #f8f9fa;
  color: #111111;
}

[data-theme="light"] .glass-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .vercel-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Smooth theme transitions */
*, *::before, *::after {
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.15s ease;
}

* {
  box-sizing: border-box;
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #444;
}

/* Vercel-style card */
.vercel-card {
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.2s ease;
}

.vercel-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Glass card */
.glass-card {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.2s ease;
}

/* Grid background */
.bg-grid {
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

@layer utilities {
  .text-balance {
    text-wrap: balance;
  }
}