-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathglobal.css
More file actions
125 lines (104 loc) · 2.76 KB
/
Copy pathglobal.css
File metadata and controls
125 lines (104 loc) · 2.76 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
@import "tailwindcss";
:root {
/* Default Dark Vercel Theme */
--bg-primary: #000000;
--bg-surface: #0a0a0a;
--bg-card: rgba(18, 18, 18, 0.7);
--bg-glass: rgba(10, 10, 10, 0.8);
--border-glass: rgba(255, 255, 255, 0.12);
--border-hover: rgba(255, 255, 255, 0.3);
--text-main: #ededed;
--text-muted: #a1a1a1;
--text-subtle: #666666;
--accent-blue: #ffffff;
--accent-indigo: #ededed;
--accent-orange: #ffffff;
--accent-amber: #a1a1a1;
--glow-blue: rgba(255, 255, 255, 0.1);
--glow-indigo: rgba(255, 255, 255, 0.08);
--font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
color-scheme: dark;
}
[data-theme="light"] {
/* Minimalist Light Vercel Theme */
--bg-primary: #ffffff;
--bg-surface: #fafafa;
--bg-card: rgba(255, 255, 255, 0.9);
--bg-glass: rgba(255, 255, 255, 0.85);
--border-glass: rgba(0, 0, 0, 0.08);
--border-hover: rgba(0, 0, 0, 0.25);
--text-main: #171717;
--text-muted: #666666;
--text-subtle: #999999;
--accent-blue: #000000;
--accent-indigo: #171717;
--accent-orange: #000000;
--accent-amber: #666666;
--glow-blue: rgba(0, 0, 0, 0.05);
--glow-indigo: rgba(0, 0, 0, 0.03);
color-scheme: light;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-family: var(--font-sans);
background-color: var(--bg-primary);
color: var(--text-main);
scroll-behavior: smooth;
line-height: 1.6;
transition: background-color 0.25s ease, color 0.25s ease;
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
background-color: var(--bg-primary);
background-image:
radial-gradient(circle at 50% 0%, var(--glow-blue) 0%, transparent 60%);
background-attachment: fixed;
}
a {
color: var(--text-main);
text-decoration: none;
transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover {
opacity: 0.8;
}
.glass-card {
background: var(--bg-card);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid var(--border-glass);
border-radius: 12px;
padding: 1.75rem;
transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}
.glass-card:hover {
transform: translateY(-2px);
border-color: var(--border-hover);
box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.3);
}
.tag-badge {
display: inline-block;
padding: 0.25rem 0.75rem;
border-radius: 9999px;
font-size: 0.8rem;
font-weight: 500;
background: rgba(255, 255, 255, 0.06);
color: var(--text-main);
border: 1px solid var(--border-glass);
}
[data-theme="light"] .tag-badge {
background: rgba(0, 0, 0, 0.05);
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 1.5rem;
width: 100%;
}