rodrigohax

Garantia 90 dias - Liquid

Jul 28th, 2025
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.08 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <meta charset="UTF-8">
  3. <!-- INICIO: Componente de Garantía -->
  4. <div class="message-container">
  5.   <div class="dot"><span style="visibility: hidden;">.</span></div>
  6.   <div class="text-mbg">Garantía de devolución de 90 días, sin preguntas.</div>
  7. </div>
  8.  
  9. <style>
  10. .message-container {
  11.   display: flex;
  12.   align-items: center;
  13.   background-color: #e9fbea;
  14.   border: 1px solid #d4edda;
  15.   border-radius: 8px;
  16.   padding: 10px 10px;
  17.   max-width: 400px;
  18.   width: 100%;
  19.   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  20. }
  21.  
  22. .message-container .dot {
  23.   width: 10px;
  24.   height: 10px;
  25.   background-color: #007800;
  26.   border-radius: 50%;
  27.   margin-right: 15px;
  28.   box-shadow: 0 0 10px #007800;
  29.   animation: pulse 1.5s infinite;
  30. }
  31.  
  32. @keyframes pulse {
  33.   0% {
  34.     box-shadow: 0 0 10px #007800;
  35.     transform: scale(1);
  36.   }
  37.   50% {
  38.     box-shadow: 0 0 20px #007800;
  39.     transform: scale(1);
  40.   }
  41.   100% {
  42.     box-shadow: 0 0 10px #007800;
  43.     transform: scale(1);
  44.   }
  45. }
  46.  
  47. .message-container .text-mbg {
  48.   font-size: 12px;
  49.   color: #039903;
  50.   line-height: normal;
  51. }
  52. </style>
Advertisement
Add Comment
Please, Sign In to add comment