diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-11-23 04:15:32 -0500 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-11-23 04:15:32 -0500 |
| commit | e27a06f816ef36c6a5176cb8f503ab43db0b561c (patch) | |
| tree | 3829dc748bda948f7a006e556251f949d6794340 | |
| parent | 51b43d22b136287ed420e4ed2c5495fb3fdf6ea5 (diff) | |
radio button
| -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> |
