Back to Shopify Liquid
Money Back 3
Shopify Liquid

Money Back 3

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

27 lines · 1.0 KB
Shopify Liquid
1<div class="unique-container-Hgf543Tuv" style="background-color: #f0fff0; border: 1px solid #E2E2E2; border-radius: 10px; padding: 10px; margin-top: 5px; margin-bottom: 5px; position: relative; overflow: hidden;">
2 <div class="unique-circle-Hgf543Tuv"></div>
3 <span class="unique-text-Hgf543Tuv" style="margin-left: 10px; font-size: 13px;">30-day money back guarantee, no questions.</span>
4</div>
5
6<style>
7 @keyframes unique-glow-Hgf543Tuv {
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-Hgf543Tuv {
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-Hgf543Tuv 1s infinite ease-in-out; /* 1s süreyle hızlandırılmış ışık saçma animasyonu */
20 }
21
22 .unique-text-Hgf543Tuv {
23 margin-left: 10px;
24 font-size: 13px;
25 }
26</style>

Related snippets