2025-11-23 18:03:56 +00:00
|
|
|
<template>
|
2025-11-26 06:53:44 +00:00
|
|
|
<div>
|
2025-11-25 10:04:01 +00:00
|
|
|
<NuxtPage />
|
2025-11-23 18:03:56 +00:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
2025-11-25 10:04:01 +00:00
|
|
|
<style>
|
2025-11-26 06:53:44 +00:00
|
|
|
/* Global Styles for Pixel Art */
|
2025-11-26 09:53:03 +00:00
|
|
|
|
|
|
|
|
/* 俐方體 11 號字型 */
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: 'Cubic 11';
|
|
|
|
|
src: url('/fonts/cubicll.ttf') format('truetype');
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-display: swap;
|
|
|
|
|
}
|
2025-11-24 10:34:02 +00:00
|
|
|
|
2025-11-26 06:53:44 +00:00
|
|
|
body {
|
2025-11-25 10:04:01 +00:00
|
|
|
margin: 0;
|
2025-11-26 06:53:44 +00:00
|
|
|
background-color: #1b1026;
|
|
|
|
|
color: #e0d8f0;
|
2025-11-26 09:53:03 +00:00
|
|
|
font-family: 'Cubic 11', 'DotGothic16', 'Courier New', monospace !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Force all elements to use Cubic 11 */
|
|
|
|
|
* {
|
|
|
|
|
font-family: 'Cubic 11', 'DotGothic16', 'Courier New', monospace !important;
|
2025-11-23 18:03:56 +00:00
|
|
|
}
|
|
|
|
|
|
2025-11-26 06:53:44 +00:00
|
|
|
/* Scrollbar Styling */
|
|
|
|
|
.custom-scrollbar::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
2025-11-23 18:03:56 +00:00
|
|
|
}
|
2025-11-26 06:53:44 +00:00
|
|
|
.custom-scrollbar::-webkit-scrollbar-track {
|
|
|
|
|
background: #0f0816;
|
|
|
|
|
border-left: 1px solid #2b193f;
|
2025-11-23 18:03:56 +00:00
|
|
|
}
|
2025-11-26 06:53:44 +00:00
|
|
|
.custom-scrollbar::-webkit-scrollbar-thumb {
|
|
|
|
|
background: #4a3b5e;
|
|
|
|
|
border: 1px solid #2b193f;
|
|
|
|
|
}
|
|
|
|
|
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: #8f80a0;
|
2025-11-24 07:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
2025-11-26 06:53:44 +00:00
|
|
|
/* Pixelated Image Rendering */
|
|
|
|
|
.image-pixelated {
|
|
|
|
|
image-rendering: pixelated;
|
2025-11-24 07:38:44 +00:00
|
|
|
}
|
2025-11-23 18:03:56 +00:00
|
|
|
</style>
|