🗑️ Remove unused Pokeball and ProfessorPokeball components from the project

This commit is contained in:
2026-01-28 05:20:42 +00:00
parent a95c6c83e1
commit 40f3f7887d
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
<template>
<div class="pokeball">
<div class="pokeball-button"></div>
<div class="pokeball-line"></div>
</div>
</template>
<style scoped>
.pokeball {
width: 100px;
height: 100px;
margin: 0 auto 30px;
position: relative;
border-radius: 50%;
background: linear-gradient(180deg, #f44336 50%, white 50%);
border: 5px solid #333;
animation: spin 3s linear infinite;
}
.pokeball-button {
position: absolute;
width: 30px;
height: 30px;
background: white;
border: 5px solid #333;
border-radius: 50%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.pokeball-line {
position: absolute;
width: 100%;
height: 5px;
background: #333;
top: 50%;
left: 0;
transform: translateY(-50%);
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.pokeball:hover {
animation-play-state: paused;
}
</style>

File diff suppressed because one or more lines are too long