File size: 611 Bytes
2566e93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.timeline-dot {
  position: relative;
  width: 1.5rem;  /* 24px */
  height: 1.5rem;
  background-color: #4f46e5; /* Indigo */
  border: 4px solid white;
  border-radius: 9999px; /* Full circle */
  z-index: 10;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  border: 2px solid #4f46e5;
  animation: ripple 2s infinite;
}