feat: custom theme

This commit is contained in:
2026-01-10 05:15:42 +02:00
parent 6286672fa5
commit ccf76a5616
13 changed files with 644 additions and 17 deletions

36
scss/_utilities.scss Normal file
View File

@@ -0,0 +1,36 @@
// Global border-radius override (sharp corners principle)
* {
border-radius: 0 !important;
}
// Remove any gradients from buttons
.btn {
background-image: none !important;
border-radius: 0 !important;
}
// Navbar - sharp corners, solid colors
.navbar {
border-radius: 0 !important;
background-image: none !important;
}
// Cards and panels
.card {
border-radius: 0 !important;
}
// Code blocks
pre, code {
border-radius: 0 !important;
}
// Quarto-specific elements
.quarto-title-block {
border-radius: 0 !important;
}
// Input elements
input, select, textarea, button {
border-radius: 0 !important;
}