45
1
Fork 0
Hackover-Meta/2025/voc/voctoweb/custom.css
2025-07-07 16:55:07 +00:00

50 lines
1.2 KiB
CSS

@font-face {
font-family: 'Retro Floral';
src: url('https://static.media.ccc.de/media/events/hackover2025/retro-floral.regular.ttf') format('truetype');
}
@font-face {
font-family: 'Retro Floral';
src: url('https://static.media.ccc.de/media/events/hackover2025/retro-floral.regular.otf') format('opentype');
}
:root {
--color-text-light: #000000;
--color-text-dark: #FFFFFF;
--color-background-dark: #001C21;
--font-heading: "Retro Floral", sans-serif;
}
html, .light {
--text-primary: var(--color-text-light);
}
.navbar-brand img {
content: url('https://static.media.ccc.de/media/events/hackover2025/voctocat-header.png');
}
h1, h2 {
font-weight: 700;
}
@media (prefers-color-scheme: dark) {
html {
--text-primary: var(--color-text-dark);
--text-heading: var(--color-text-dark);
--surface-50: #001C21;
}
body.page-list .events-header .logo {
background: none;
}
.thumbnail {
background: none;
}
}
.dark {
--text-primary: var(--color-text-dark);
--text-heading: var(--color-text-dark);
--surface-50: #001C21;
}