-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
119 lines (94 loc) · 2.49 KB
/
Copy pathindex.css
File metadata and controls
119 lines (94 loc) · 2.49 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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: dark;
color: rgba(255, 255, 255, 0.87);
background-color: #0f172a;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-width: 400px;
min-height: 500px;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}
@layer components {
/* ========== Glow Border Effect ========== */
.glow-border {
@apply border-primary-500/50 shadow-glow;
}
.glow-border-strong {
@apply border-primary-400/60 shadow-glow-strong animate-glow;
}
.glow-border-emerald {
@apply border-emerald-500/50 shadow-glow-emerald;
}
.glow-border-amber {
@apply border-amber-500/50 shadow-glow-amber;
}
.glow-border-rose {
@apply border-rose-500/50 shadow-glow-rose;
}
/* ========== Gradient Effects ========== */
/* Gradient Text */
.text-gradient {
@apply bg-gradient-to-r from-white via-primary-200 to-primary-400 bg-clip-text text-transparent;
}
.text-gradient-cyan {
@apply bg-gradient-to-r from-cyan-400 to-primary-400 bg-clip-text text-transparent;
}
/* Gradient Background */
.bg-gradient-glass {
@apply bg-gradient-to-br from-white/10 to-white/5;
}
.bg-gradient-primary {
@apply bg-gradient-to-r from-primary-600 to-primary-500;
}
.bg-gradient-emerald {
@apply bg-gradient-to-r from-emerald-600 to-emerald-500;
}
.bg-gradient-amber {
@apply bg-gradient-to-r from-amber-600 to-amber-500;
}
.bg-gradient-rose {
@apply bg-gradient-to-r from-rose-600 to-rose-500;
}
}
/* ========== Custom Scrollbar Styles ========== */
.custom-scrollbar::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: rgba(100, 116, 139, 0.4);
border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: rgba(100, 116, 139, 0.6);
}
/* Firefox Scrollbar */
.custom-scrollbar {
scrollbar-width: thin;
scrollbar-color: rgba(100, 116, 139, 0.4) transparent;
}
/* ========== Reduced Motion Support ========== */
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}