50 lines
1.1 KiB
CSS
50 lines
1.1 KiB
CSS
@font-face {
|
|
font-family: 'Retro Floral';
|
|
src: url('http://localhost:3000/assets/retro-floral.regular.ttf') format('truetype');
|
|
}
|
|
@font-face {
|
|
font-family: 'Retro Floral';
|
|
src: url('http://localhost:3000/assets/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;
|
|
}
|
|
|