adding monkeytype
Some checks failed
Mark Stale PRs / stale (push) Has been cancelled

This commit is contained in:
Benjamin Falch
2026-04-23 13:53:44 +02:00
parent e214a2fd35
commit 2bc741fb78
1930 changed files with 7590652 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
/*inspired by GMK MOONLIGHT*/
header[data-focused] {
& [data-nav-item],
& nav:before,
& nav:after {
background: var(--bg-color);
}
}
[data-nav-item="test"],
[data-nav-item="leaderboards"],
[data-nav-item="about"],
[data-nav-item="settings"] {
border-radius: rem !important;
color: #191f28 !important;
background: #c69f68;
&:hover {
border-radius: rem !important;
color: #4b5975 !important;
transition: 0.25s;
}
}
body.crtmode {
& [data-nav-item="test"],
& [data-nav-item="leaderboards"],
& [data-nav-item="about"],
& [data-nav-item="settings"] {
box-shadow:
3px 0 1px color-mix(in srgb, #c69f68 20%, transparent),
-3px 0 color-mix(in srgb, #c69f68 30%, transparent),
0 0 3px;
}
& header[data-focused] [data-nav-item] {
box-shadow: none;
}
}