atomic-css/index.html

160 lines
4.9 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.block
{
position:relative;
display: flex;
align-items: flex-start;
margin: 0;
padding: 0;
border: 0;
border-radius: 5px;
}
.block > *
{
padding:10px 0 10px 10px;
}
.block > *:last-child
{
padding-right: 10px;
}
.block__hit-area
{
width:100%;
}
.block--bordered
{
border:1px solid #ddd;
}
input[type='radio']
{
appearance: none;
display:block;
margin:0;
padding:0;
border:0;
width:0;
height:0;
}
input[type='radio'] + .block label
{
position: relative;
padding-left:50px;
}
input[type='radio'] + .block label::before
{
content: " ";
display: block;
position: absolute;
top: 10px;
left: 10px;
width: 17px;
height: 17px;
border: 2px solid #000;
border-radius: 20px;
}
input[type='radio']:checked + .block label::after
{
content: " ";
display: block;
position: absolute;
width: 11px;
height: 11px;
top: 15px;
left: 15px;
border-radius: 20px;
background: #000;
}
input[type='radio']:checked + .block
{
background:yellow;
}
</style>
<style>
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;600;900&display=swap');
.text--size-micro{ font-size: 12px; line-height:24px; }
.text--size-small{ font-size: 14px; line-height:24px; }
.text--size-copy{ font-size:16px; line-height:24px; }
.text--size-h2{ font-size:24px; line-height:28px; }
.text--size-h1{ font-size:32px; line-height:48px; }
.text--green-darken-01{ color: #4B6451; }
.text--weight-light{ font-family:"Nunito Sans"; font-weight:100; }
.text--weight-normal{ font-family:"Nunito Sans"; font-weight:300; }
.text--weight-bold{ font-family:"Nunito Sans"; font-weight:600; }
.text--weight-black{ font-family:"Nunito Sans"; font-weight:900; }
.text--uppercase{ text-transform: uppercase; }
.gap--lg { margin:72px 0 0 0; }
.gap--md { margin:47px 0 0 0; }
.gap--sm { margin:24px 0 0 0; }
.gap--xs { margin:12px 0 0 0; }
</style>
</head>
<body>
<form>
<div class="text--size-h2 text--weight-black gap--reset gap--lg">Review Your Order</div>
<div class="text--size-copy text--weight-black text--uppercase gap--sm">Payment Method</div>
<div class="block block--bordered gap--xs">
<div class="text--size-copy text--weight-bold">Credit Card</div>
<a class="text--green-darken-01" href="/">Change</a>
</div>
<input id="check-1" type="radio" name="slot-1" value="option-1"/>
<div class="block">
<label class="block__hit-area" for="check-1">
<span class="text--size-copy text--weight-bold">Credit Card</strong><br>
<span class="text--size-copy text--weight-normal">Credit Card</span><br>
<span class="text--size-copy text--weight-normal">Credit Card</span><br>
<span class="text--size-copy text--weight-normal">Credit Card</span><br>
<span class="text--size-copy text--weight-normal">Credit Card</span>
</label>
<a class="block__auxillary" href="/">Change</a>
</div>
<input id="check-2" type="radio" name="slot-1" value="option-2"/>
<div class="block">
<label class="block__hit-area" for="check-2">
<strong>Paypal</strong><br>
<span>also good</span>
</label>
<a class="block__auxillary" href="/">Change</a>
</div>
<div class="text--size-h2 text--weight-black">Shipping Information</div>
<div class="text--size-copy text--weight-black text--uppercase">Shipping Information</div>
<div class="block block--bordered">
<div class="block__hit-area">
<div class="text--size-copy text--weight-bold">Shell Long TP Check</div>
<div class="text--size-copy text--weight-normal">
8759 Cardinal Court<br>
Windmere, FL 34786<br>
US
</div>
<div class="text--size-copy text--weight-normal">
8759 Cardinal Court<br>
Windmere, FL 34786<br>
US
</div>
</div>
<a class="block__auxillary" href="">Change</a>
</div>
</form>
</body>
</html>