2026-04-07 18:55:06 +09:00
|
|
|
@import "tailwindcss";
|
2026-04-14 13:35:39 +09:00
|
|
|
@import "overlayscrollbars/overlayscrollbars.css";
|
2026-04-13 14:20:32 +09:00
|
|
|
|
|
|
|
|
@theme {
|
|
|
|
|
--font-sans: "Maplestory", "Noto Sans KR", system-ui, -apple-system, sans-serif;
|
|
|
|
|
--font-maple: "Maplestory", "Noto Sans KR", sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-13 19:17:49 +09:00
|
|
|
html, body, #root {
|
2026-04-14 13:35:39 +09:00
|
|
|
min-height: 100%;
|
|
|
|
|
background: linear-gradient(to bottom right, #030712, #030712, #0f172a);
|
|
|
|
|
background-attachment: fixed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* OverlayScrollbars body 오버레이 테마 */
|
|
|
|
|
.os-theme-maple.os-theme-dark {
|
|
|
|
|
--os-handle-bg: rgba(255, 255, 255, 0.25);
|
|
|
|
|
--os-handle-bg-hover: rgba(255, 255, 255, 0.4);
|
|
|
|
|
--os-handle-bg-active: rgba(255, 255, 255, 0.5);
|
|
|
|
|
--os-size: 12px;
|
|
|
|
|
--os-padding-perpendicular: 2px;
|
|
|
|
|
--os-padding-axis: 2px;
|
2026-04-13 19:17:49 +09:00
|
|
|
}
|
|
|
|
|
|
2026-04-13 14:20:32 +09:00
|
|
|
html {
|
|
|
|
|
font-family: "Maplestory", "Noto Sans KR", system-ui, sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
font-feature-settings: "ss01", "ss02";
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
}
|
2026-04-13 15:20:46 +09:00
|
|
|
|
|
|
|
|
button:not(:disabled),
|
|
|
|
|
[role="button"]:not(:disabled),
|
|
|
|
|
a {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button:disabled {
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
2026-04-13 15:41:47 +09:00
|
|
|
|
|
|
|
|
/* number input 화살표 숨기기 */
|
|
|
|
|
input[type="number"]::-webkit-inner-spin-button,
|
|
|
|
|
input[type="number"]::-webkit-outer-spin-button {
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
input[type="number"] {
|
|
|
|
|
-moz-appearance: textfield;
|
|
|
|
|
}
|
2026-04-13 19:17:49 +09:00
|
|
|
|
2026-04-13 20:38:01 +09:00
|
|
|
/* 툴팁 애니메이션 */
|
|
|
|
|
@keyframes fadeIn {
|
|
|
|
|
from { opacity: 0; transform: translateY(2px); }
|
|
|
|
|
to { opacity: 1; transform: translateY(0); }
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-14 13:35:39 +09:00
|
|
|
|
|
|
|
|
/* 내부 스크롤 영역만 얇은 커스텀 스크롤바 (메인 페이지 스크롤은 기본) */
|
|
|
|
|
*:not(html):not(body) {
|
2026-04-13 19:17:49 +09:00
|
|
|
scrollbar-width: thin;
|
|
|
|
|
scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
|
|
|
|
|
}
|
2026-04-14 13:35:39 +09:00
|
|
|
*:not(html):not(body)::-webkit-scrollbar {
|
2026-04-13 19:17:49 +09:00
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
}
|
2026-04-14 13:35:39 +09:00
|
|
|
*:not(html):not(body)::-webkit-scrollbar-track {
|
2026-04-13 19:17:49 +09:00
|
|
|
background: transparent;
|
|
|
|
|
}
|
2026-04-14 13:35:39 +09:00
|
|
|
*:not(html):not(body)::-webkit-scrollbar-thumb {
|
|
|
|
|
background: rgba(255, 255, 255, 0.12);
|
2026-04-13 19:17:49 +09:00
|
|
|
border-radius: 4px;
|
|
|
|
|
transition: background 0.2s;
|
|
|
|
|
}
|
2026-04-14 13:35:39 +09:00
|
|
|
*:not(html):not(body)::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: rgba(255, 255, 255, 0.22);
|
2026-04-13 19:17:49 +09:00
|
|
|
}
|
2026-04-14 13:35:39 +09:00
|
|
|
*:not(html):not(body)::-webkit-scrollbar-corner {
|
2026-04-13 19:17:49 +09:00
|
|
|
background: transparent;
|
|
|
|
|
}
|