-
-
Save alexpani/3d5e179d1ddb1b5d49f13cd11eac2640 to your computer and use it in GitHub Desktop.
Poppy Icon Box
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Poppy Icon Box v1.2.1 --> | |
<div class="poppy poppy-icon-box"> | |
<div class="one-third first"> | |
<i class="fa fa-truck fa-3x" aria-hidden="true"></i> | |
<h3 class="">SPEDIZIONE GRATUITA</h3> | |
<h4>Per ordini a partire da 79,90€</h4> | |
</div> | |
<div class="one-third"> | |
<i class="fa fa-shopping-cart fa-3x" aria-hidden="true"></i> | |
<h3 class="">ACQUISTO RAPIDO</h3> | |
<h4>Senza registrazione</h4> | |
</div> | |
<div class="one-third"><a href=""> | |
<i class="fa fa-credit-card-alt fa-3x" aria-hidden="true"></i> | |
<h3 class="">PAGAMENTI SICURI</h3> | |
<h4>Con Paypal e Bonifico Bancario</h4> | |
</div> | |
<div class="clearfix"></div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* Poppy Icon Box v1.2 | |
$icon-color: #15b6e7 !default; | |
$title: #333 !default; | |
$text: #555 !default; | |
. | |
poppy-icon-box { | |
text-align: center; | |
padding: 8px; | |
.fa { | |
color: $color3; | |
} | |
h3 { | |
margin-top: 8px; | |
margin-bottom: 0; | |
font-size: 18px; | |
color: $title; | |
} | |
h4 { | |
font-size: 14px; | |
font-weight: normal; | |
margin-bottom: 20px; | |
color: $text; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment