Files
Arkie-Library-Frontend/src/index.css

44 lines
815 B
CSS
Raw Normal View History

2026-05-16 00:18:22 +08:00
@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body,
#root {
height: 100%;
}
body {
@apply bg-ark-bg text-neutral-100 antialiased;
}
/* Match theme: avoid default blue accent on controls */
:root {
accent-color: #eeb726;
}
header a,
header button {
-webkit-tap-highlight-color: transparent;
}
/* Desktop header nav: thin scrollbar when links overflow (still 單列) */
.header-nav-scroll {
scrollbar-width: thin;
scrollbar-color: rgba(238, 183, 38, 0.45) transparent;
}
.header-nav-scroll::-webkit-scrollbar {
height: 4px;
}
.header-nav-scroll::-webkit-scrollbar-thumb {
background-color: rgba(238, 183, 38, 0.45);
border-radius: 9999px;
}
.header-nav-scroll::-webkit-scrollbar-track {
background: transparent;
}
.gold-underline {
box-shadow: inset 0 -2px 0 #eeb726;
}