This file contains hidden or 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
.box { | |
width: XXpx; | |
min-width: XXpx; | |
max-width: XXpx; | |
} |
This file contains hidden or 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
<p>Type: {{ product.type | link_to_type }}</p> |
This file contains hidden or 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
.box { | |
display: inline-block; | |
min-width: 50%; | |
max-width: 100%; | |
width: calc((480px - 100%) * 480); | |
} |
This file contains hidden or 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
.block { | |
display: inline-block; | |
min-width: 50%; /* 300px */ | |
max-width: 100%; /* 600px */ | |
width: calc((480px - 100%) * 480); /* or [calc((480px - 600px) * 480);], which equals -57,600px */ | |
} |
This file contains hidden or 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
<div class="product-form__item product-form__item--lip"> | |
<label for="Engraving">Engraving</label> | |
<input type="text" id="engraving" name="properties[Engraving]"> | |
</div> |
This file contains hidden or 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
.block { | |
display: inline-block; | |
min-width: 50%; /* 150px */ | |
max-width: 100%; /* 300px */ | |
width: calc((480px - 100%) * 480); /* or [calc((480px - 300px) * 480);], which equals 86,400px */ | |
} |
This file contains hidden or 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
<input type="radio" id="itemA-1" /> | |
<input type="radio" id="itemA-2" /> | |
<input type="radio" id="itemA-3" /> | |
<label for="itemA-1" />Carousel</label> | |
<label for=“itemD-11" />div</label> |
This file contains hidden or 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
} | |
#itemA-3:checked ~ | |
#itemB-6:checked ~ | |
#itemC-2:checked ~ | |
#itemD-11:checked ~ | |
#itemE-5:not:checked ~ | |
#itemF-2:checked ~ | |
#itemG-5:checked ~ * .div1 { | |
display: block; | |
} |