| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /*:root {
- --main-color: #EE0033;
- --background-color-1: #eef5fb;
- --star-color: #ffc911;
- }*/
- /*:root {
- --main-color: #F36F21;
- --background-color-1: #eef5fb;
- --star-color: #ffc911;
- }*/
- :root {
- --main-color: #FF8603;
- --background-color-1: #eef5fb;
- --star-color: #ffc911;
- }
- .arrow {
- position: absolute;
- top: 0px;
- right: 25px;
- transform: translate(-50%,-50%);
- /*margin-top: 40px;*/
- }
- .arrow span {
- display: block;
- width: 15px;
- height: 15px;
- border-bottom: 5px solid #06A8FF;
- border-right: 5px solid #06A8FF;
- transform: rotate(45deg);
- margin: -10px;
- animation: animate 2s infinite;
- }
- .arrow span:nth-child(2) {
- animation-delay: -0.2s;
- }
- .arrow span:nth-child(3) {
- animation-delay: -0.4s;
- }
- @keyframes animate {
- 0% {
- opacity: 0;
- transform: rotate(45deg) translate(-20px,-20px);
- }
- 50% {
- opacity: 1;
- }
- 100% {
- opacity: 0;
- transform: rotate(45deg) translate(20px,20px);
- }
- }
- .arrow-rotate {
- transform: rotate(180deg);
- right: 30px;
- }
|