diff options
| -rw-r--r-- | StoneIsland/www/css/account.css | 3 | ||||
| -rw-r--r-- | StoneIsland/www/index.html | 10 |
2 files changed, 8 insertions, 5 deletions
diff --git a/StoneIsland/www/css/account.css b/StoneIsland/www/css/account.css index c8961a69..4286baa0 100644 --- a/StoneIsland/www/css/account.css +++ b/StoneIsland/www/css/account.css @@ -336,7 +336,8 @@ input.switch:checked + label:after { transition: opacity .2s; } -.checkbox-toggle input[type=checkbox]:checked + label:after, .checkbox-toggle input[type=checkbox]:checked + label:before { +.checkbox-toggle input[type=checkbox]:checked + label:after, .checkbox-toggle input[type=checkbox]:checked + label:before, +.checkbox-toggle input[type=radio]:checked + label:after, .checkbox-toggle input[type=radio]:checked + label:before { opacity: 1; } diff --git a/StoneIsland/www/index.html b/StoneIsland/www/index.html index cc7ee249..1bbae37f 100644 --- a/StoneIsland/www/index.html +++ b/StoneIsland/www/index.html @@ -604,20 +604,22 @@ <div class="checkbox-container"> <div class="checkbox-row"> <div class="checkbox-toggle"> - <input id="express-shipping" type="checkbox" name="express-shipping" value="true" required> + <input id="express-shipping" type="radio" name="ShippingType" value="Express" required> <label for="express-shipping"></label> </div> <label class="checkbox-caption" for="express-shipping"> - fast + <b>COMPLIMENTARY EXPRESS $10</b><br> + (DELIVERY IN 2-4 WORKING DAYS) </label> </div> <div class="checkbox-row"> <div class="checkbox-toggle"> - <input type="checkbox" id="standard-shipping" name="standard-shipping" value="true" required> + <input id="standard-shipping" type="radio" name="ShippingType" value="Standard" checked required> <label for="standard-shipping"></label> </div> <label class="checkbox-caption" for="standard-shipping"> - slow + <b>STANDARD SHIPPING</b><br> + (DELIVERY IN 5-8 WORKING DAYS) </label> </div> </div> |
