File size: 609 Bytes
6967708 0d81b5e 6967708 0d81b5e 6967708 0d81b5e 6967708 0d81b5e 6967708 0d81b5e 6967708 0d81b5e 6967708 |
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 |
/* Shared styles */
body {
font-family: 'Inter', sans-serif;
}
.clock-container {
max-width: 600px;
width: 100%;
border: 1px solid rgba(109, 40, 217, 0.3);
}
.clock-face {
max-width: 500px;
}
@media (max-width: 640px) {
.clock-face {
grid-template-columns: 1fr;
gap: 1rem;
}
.clock-container {
padding: 2rem;
}
}
/* Animation for equations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(5px); }
to { opacity: 1; transform: translateY(0); }
}
.equation {
min-height: 40px;
animation: fadeIn 0.5s ease-out;
} |