🎨 Update styling and structure for improved UI/UX in Pokedex components and main application

This commit is contained in:
2026-01-28 04:37:34 +00:00
parent bcbcb36630
commit fe641a92b0
4 changed files with 149 additions and 0 deletions

View File

@@ -0,0 +1,71 @@
<template>
<div class="container">
<Pokeball />
<h1>Pokedex Online</h1>
<p class="subtitle">Your Digital Pokédex Companion</p>
<p class="description">
A modern web application for exploring Pokémon data, tracking collections,
and managing your Pokémon journey. Built with for trainers everywhere.
</p>
<div class="status">
<strong>Status:</strong> In Development<br>
Check back soon for updates!
</div>
</div>
</template>
<script setup>
import Pokeball from './components/Pokeball.vue';
</script>
<style scoped>
.container {
background: white;
border-radius: 20px;
padding: 60px 40px;
max-width: 600px;
width: 100%;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
text-align: center;
}
h1 {
color: #333;
margin-bottom: 20px;
font-size: 2.5em;
}
.subtitle {
color: #667eea;
font-size: 1.2em;
margin-bottom: 30px;
}
.description {
color: #666;
line-height: 1.6;
margin-bottom: 30px;
}
.status {
background: #f0f0f0;
padding: 15px;
border-radius: 10px;
color: #666;
font-size: 0.9em;
}
.status strong {
color: #667eea;
}
@media (max-width: 600px) {
.container {
padding: 40px 20px;
}
h1 {
font-size: 2em;
}
}
</style>