pet_data/app/app.vue

40 lines
766 B
Vue
Raw Normal View History

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-25 10:04:01 +00:00
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&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;
font-family: 'Press Start 2P', monospace;
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>