incr/resources/css/app.css

26 lines
570 B
CSS
Raw Permalink Normal View History

2025-07-10 15:24:15 +02:00
@import 'tailwindcss';
@source '../views';
2025-07-12 21:55:55 +02:00
@font-face {
font-family: '7Segment';
/* Relative so Vite resolves and fingerprints it; an absolute /fonts path
404s against the dev server, which serves assets itself. */
src: url('../fonts/7segment.woff') format('woff');
2025-07-12 21:55:55 +02:00
font-weight: normal;
font-style: normal;
}
.font-digital {
font-family: '7Segment', monospace;
}
2025-07-13 04:06:37 +02:00
.glow-red {
box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
transition: box-shadow 300ms ease;
}
.glow-red:hover {
box-shadow: 0 0 25px rgba(239, 68, 68, 0.6);
}