Files
vertex/src/components/widgets/date-widget.module.css

25 lines
439 B
CSS

.DateWidget {
display: flex;
flex-direction: column;
height: 100%;
font-family: var(--font-accent);
letter-spacing: -2px;
text-shadow: var(--text-shadow-lg);
font-weight: bold;
}
.Date {
font-size: clamp(2.5rem, 3.5vw, 5.5rem);
margin-bottom: max(1vw, 1rem);
line-height: 1.1;
}
.Time {
font-size: clamp(1.5rem, 2vw, 2.8rem);
text-shadow: var(--text-shadow-default);
}
.Logo {
color: var(--color-secondary);
}