Server IP : 150.95.80.236 / Your IP : 18.226.150.245 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/uat.pcu.in.th/demo15/src/sass/components/ |
Upload File : |
// // Pulse // // Base .pulse { position: relative; // Theme Colors @each $name, $color in $theme-colors { &.pulse-#{$name} { .pulse-ring { border-color: $color; } } } } .pulse-ring { display: block; border-radius: 40px; height: 40px; width: 40px; position: absolute; animation: animation-pulse 3.5s ease-out; animation-iteration-count: infinite; opacity: 0; border-width: 3px; border-style: solid; border-color: $gray-500; } @keyframes animation-pulse { 0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;} 60% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;} 65% {opacity: 1;} 100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;} }