2026-03-02T08-51-36_auto_memory/memories.db-wal
This commit is contained in:
parent
6c9ef79fce
commit
e04fec2637
@ -98,6 +98,33 @@ pre {
|
||||
min-height: 100dvh;
|
||||
}
|
||||
|
||||
/* Gradient text utility */
|
||||
.text-gradient {
|
||||
background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
|
||||
/* Subtle glow for cards on hover */
|
||||
.glow-hover {
|
||||
transition: box-shadow 0.3s ease;
|
||||
}
|
||||
.glow-hover:hover {
|
||||
box-shadow: 0 0 30px -5px color-mix(in srgb, var(--color-primary) 20%, transparent);
|
||||
}
|
||||
|
||||
/* Noise texture overlay */
|
||||
.noise::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
opacity: 0.03;
|
||||
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
|
||||
pointer-events: none;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* Reduced motion */
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
*,
|
||||
|
||||
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user