20 lines
435 B
Plaintext
20 lines
435 B
Plaintext
---
|
|
import FooterComponent from "./FooterComponent.vue"
|
|
---
|
|
|
|
<section class="">
|
|
<FooterComponent client:visible />
|
|
</section>
|
|
<style>
|
|
.shape {
|
|
-webkit-animation: shape 3ss forwards;
|
|
animation: shape 2s infinite;
|
|
color: rgb(255, 0, 0);
|
|
}
|
|
@keyframes shape {
|
|
50%{color: red(187, 224, 85); }
|
|
50%{color: rgb(255, 255, 255); }
|
|
/* 50%{color: rgb(0, 255, 34);} */
|
|
}
|
|
</style>
|