Search Results (940)

Featured Projects

Talk to the Developer & Get the Best Deal

/* Continuous heartbeat scale pulse and shimmer for featured buttons */ .btn-ripple-featured { position: relative !important; overflow: hidden !important; animation: heartbeat-pulse 2s infinite ease-in-out !important; } .btn-ripple-featured::after { content: '' !important; position: absolute !important; top: 0 !important; left: -150% !important; width: 60% !important; height: 100% !important; background: linear-gradient( 90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100% ) !important; transform: skewX(-25deg) !important; animation: shimmer-sweep 2s infinite ease-in-out !important; } @keyframes heartbeat-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } } @keyframes shimmer-sweep { 0% { left: -150%; } 50%, 100% { left: 250%; } } /* Custom premium chip styling */ .chip-premium { font-size: 8px !important; font-weight: 800 !important; letter-spacing: 0.05em !important; text-transform: uppercase !important; padding: 3px 6px !important; border-radius: 4px !important; box-shadow: 0 1px 2px rgba(0,0,0,0.1) !important; } /* Hide scrollbar for Chrome, Safari and Opera */ .no-scrollbar::-webkit-scrollbar { display: none; } /* Hide scrollbar for IE, Edge and Firefox */ .no-scrollbar { -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ }