-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfavicon.css
More file actions
97 lines (86 loc) · 1.85 KB
/
favicon.css
File metadata and controls
97 lines (86 loc) · 1.85 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
/* Custom favicon styles using CSS */
.logo-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 2.5rem;
height: 2.5rem;
background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
border-radius: 8px;
color: white;
font-size: 1.25rem;
margin-right: 0.5rem;
box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}
.logo-icon:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(37, 99, 235, 0.4);
}
/* App icon for mobile devices */
.app-icon {
width: 1.5rem;
height: 1.5rem;
background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
border-radius: 4px;
display: inline-flex;
align-items: center;
justify-content: center;
color: white;
font-size: 0.875rem;
margin-right: 0.25rem;
}
/* Status indicators */
.status-dot {
width: 8px;
height: 8px;
border-radius: 50%;
display: inline-block;
margin-right: 0.5rem;
}
.status-dot.live {
background: #10b981;
animation: pulse-dot 2s infinite;
}
.status-dot.connecting {
background: #f59e0b;
animation: pulse-dot 1s infinite;
}
.status-dot.offline {
background: #6b7280;
}
@keyframes pulse-dot {
0%,
100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.7;
transform: scale(1.1);
}
}
/* Better visual indicators */
.connection-indicator {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.25rem 0.75rem;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 500;
}
.connection-indicator.connected {
background: rgba(16, 185, 129, 0.1);
color: #10b981;
border: 1px solid rgba(16, 185, 129, 0.2);
}
.connection-indicator.connecting {
background: rgba(245, 158, 11, 0.1);
color: #f59e0b;
border: 1px solid rgba(245, 158, 11, 0.2);
}
.connection-indicator.disconnected {
background: rgba(239, 68, 68, 0.1);
color: #ef4444;
border: 1px solid rgba(239, 68, 68, 0.2);
}