incr/resources/css/app.css

24 lines
423 B
CSS
Raw 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';
src: url('/fonts/7segment.woff') format('woff');
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);
}