deleting unused components and restructuring

This commit is contained in:
2025-12-09 17:27:26 +00:00
parent 9d9ea9ac53
commit fb47883e59
6 changed files with 63 additions and 158 deletions

View File

@@ -0,0 +1,50 @@
<template>
<img src="/img/borders/utena.png" class="flower tl antirotate" />
<img src="/img/borders/utena.png" class="flower tr rotate" />
<img src="/img/borders/utena.png" class="flower bl rotate" />
<img src="/img/borders/utena.png" class="flower br antirotate" />
<slot />
</template>
<style scoped>
.flower {
position: absolute;
width: 150px;
}
.tl {
top: 100px;
left: 0px;
--start: 0deg;
}
.tr {
top: 100px;
right: 0;
--start: 90deg;
}
.bl {
bottom: -100px;
left: 0;
--start: 180deg;
}
.br {
bottom: -100px;
right: 0;
--start: 270deg;
}
.rotate {
animation: spin 3s linear infinite;
}
.antirotate {
animation: spin 3s linear infinite reverse;
}
@keyframes spin {
from {
transform: rotate(var(--start));
}
to {
transform: rotate(calc(var(--start) + 360deg));
}
}
</style>