File size: 440 Bytes
30d8d56
f11d6a0
30d8d56
f11d6a0
 
30d8d56
 
 
f11d6a0
 
30d8d56
 
f11d6a0
 
30d8d56
 
f11d6a0
 
30d8d56
 
f11d6a0
30d8d56
 
 
 
 
 
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
/* Shared styles */
body {
    font-family: 'Space Mono', monospace;
}

/* Clock animation */
.hand {
    transition: transform 0.5s cubic-bezier(0.4, 2.3, 0.6, 1);
}

.clock-container {
    transition: transform 0.3s ease;
}

.clock-container:hover {
    transform: scale(1.02);
}

.current-time-display {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}