arrows.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .arrows-container {
  2. display: flex;
  3. flex-wrap: wrap;
  4. justify-content: center;
  5. align-items: center;
  6. width: 100%;
  7. }
  8. .chevron-1 {
  9. width: 100%;
  10. text-align: center;
  11. }
  12. .chevron-2 {
  13. width: 100%;
  14. text-align: center;
  15. }
  16. .chevron-3 {
  17. width: 100%;
  18. text-align: center;
  19. transform: translateY(-100%);
  20. }
  21. .flecha{
  22. margin: 0;
  23. padding: 0;
  24. font-weight: bolder;
  25. font-size: 58px;
  26. transform: scaleX(2);
  27. color: rgb(1, 115, 182);
  28. }
  29. .topArrow{
  30. animation-name: topArrow;
  31. -webkit-animation-name: topArrow;
  32. animation-duration: 2s;
  33. -webkit-animation-duration: 2s;
  34. animation-iteration-count: infinite;
  35. -webkit-animation-iteration-count: infinite;
  36. }
  37. @keyframes topArrow {
  38. 0% {
  39. transform: scale(0) translateY(0%);
  40. opacity: 0;
  41. }
  42. 100%{
  43. transform: scale(1) translateY(50%);
  44. opacity: 1;
  45. }
  46. }
  47. .middleArrow{
  48. animation-name: middleArrow;
  49. -webkit-animation-name: middleArrow;
  50. animation-duration: 2s;
  51. -webkit-animation-duration: 2s;
  52. animation-iteration-count: infinite;
  53. -webkit-animation-iteration-count: infinite;
  54. }
  55. @keyframes middleArrow {
  56. 0% {
  57. transform: translateY(-50%);
  58. }
  59. 100%{
  60. transform: translateY(0%);
  61. opacity: 1;
  62. }
  63. }
  64. .bottomArrow{
  65. animation-name: bottomArrow;
  66. -webkit-animation-name: bottomArrow;
  67. animation-duration: 2s;
  68. -webkit-animation-duration: 2s;
  69. animation-iteration-count: infinite;
  70. -webkit-animation-iteration-count: infinite;
  71. }
  72. @keyframes bottomArrow {
  73. 0% {
  74. transform: scale(1) translateY(-100%);
  75. opacity: 1;
  76. }
  77. 100%{
  78. transform: scale(0) translateY(-50%);
  79. opacity: 0;
  80. }
  81. }