rodrigohax

asdsdasd

Jul 29th, 2025
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <!-- Inicio: Oferta válida hasta hoy -->
  2. <div class="oferta">
  3. <div class="oferta-header">
  4. <span class="parpadeo"></span>
  5. <span class="texto-oferta">
  6. <strong>Oferta válida hasta {{ "now" | date: "%-d de %B de %Y" }}</strong>
  7. </span>
  8. </div>
  9. </div>
  10.  
  11. <style>
  12. .oferta {
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. font-family: Arial, sans-serif;
  17. margin: 10px 0;
  18. width: 100%;
  19. }
  20.  
  21. .oferta-header {
  22. display: flex;
  23. align-items: center;
  24. background-color: #e3e3f9;
  25. border: 2px dashed #7069BC;
  26. border-radius: 14px;
  27. padding: 8px 16px;
  28. font-size: 13px;
  29. color: #000;
  30. width: 100%;
  31. justify-content: center;
  32. }
  33.  
  34. .parpadeo {
  35. width: 10px;
  36. height: 10px;
  37. background-color: #7069BC;
  38. border-radius: 50%;
  39. margin-right: 8px;
  40. animation: blink 2.5s ease-in-out infinite;
  41. }
  42.  
  43. @keyframes blink {
  44. 0%, 100% {
  45. opacity: 1;
  46. }
  47. 50% {
  48. opacity: 0.3;
  49. }
  50. }
  51.  
  52. .texto-oferta {
  53. font-weight: bold;
  54. text-align: center;
  55. }
  56. </style>
  57. <!-- Fin: Oferta válida hasta hoy -->
Advertisement
Add Comment
Please, Sign In to add comment