-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
68 lines (56 loc) · 1.08 KB
/
Copy pathindex.css
File metadata and controls
68 lines (56 loc) · 1.08 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
/* Urban Cooling Agent - Custom Styles */
/* Base reset and utilities */
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Custom animation delays for typing indicator */
.delay-75 {
animation-delay: 75ms;
}
.delay-150 {
animation-delay: 150ms;
}
/* Gradient backgrounds for heat maps */
.gradient-heat {
background: linear-gradient(to top, #3B82F6, #FACC15, #EF4444);
}
/* Glass morphism effect */
.glass {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
/* Loading pulse animation */
@keyframes pulse-glow {
0%, 100% {
box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
}
50% {
box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
}
}
.pulse-glow {
animation: pulse-glow 2s infinite;
}
/* Transitions for sidebar */
.sidebar-transition {
transition: width 0.3s ease-in-out;
}
/* Custom focus states */
input:focus, button:focus {
outline: none;
}
/* Print styles */
@media print {
.no-print {
display: none !important;
}
}