Back to Shopify Liquid
Money Back 2
Shopify Liquid

Money Back 2

Drop this Shopify Liquid snippet into your theme to add the money back 2 block. Copy the code below, paste it into your theme files, save and you're done.

22 lines · 0.9 KB
Shopify Liquid
1<div class="unique-container-Abc123Xyz" style="background-color: white; border: 1px solid #E2E2E2; border-radius: 10px; padding: 10px; margin-top: 5px; margin-bottom: 5px; position: relative; overflow: hidden;">
2 <div class="unique-circle-Abc123Xyz"></div>
3 <span class="unique-text-Abc123Xyz" style="margin-left: 10px; font-size: 16px;">30-day money back Guarantee</span>
4</div>
5
6<style>
7 @keyframes unique-glow-Abc123Xyz {
8 0% { box-shadow: 0 0 5px 0 rgba(0, 255, 0, 0.7); }
9 50% { box-shadow: 0 0 15px 5px rgba(0, 255, 0, 0.5); }
10 100% { box-shadow: 0 0 5px 0 rgba(0, 255, 0, 0.7); }
11 }
12
13 .unique-circle-Abc123Xyz {
14 width: 10px;
15 height: 10px;
16 border-radius: 50%;
17 background-color: #006400; /* Daha koyu yeşil renk */
18 display: inline-block;
19 animation: unique-glow-Abc123Xyz 1s infinite ease-in-out; /* 1s süreyle hızlandırılmış ışık saçma animasyonu */
20 }
21</style>

Related snippets