File size: 651 Bytes
884f087
d078b46
884f087
d078b46
 
884f087
 
 
 
 
 
 
 
d078b46
 
884f087
 
 
 
 
d078b46
 
884f087
 
 
 
 
d078b46
 
884f087
 
 
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
/* Main styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Code block styling */
pre {
    border-radius: 0.375rem;
    padding: 1rem;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
}

/* Animation for alarm state */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.alarm-active {
    animation: pulse 1s infinite;
}