atomic-css/index.html
2021-09-08 14:05:57 -04:00

95 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.block
{
position:relative;
display: flex;
align-items: stretch;
margin: 0;
padding: 0;
border: 0;
background:lightgrey;
border-radius: 5px;
}
.block > *{ margin:10px 5px 10px 5px; }
.block > *:first-child{ margin-left:10px; }
.block > *:last-child{ margin-right:10px; }
.style--wide
{
width:100%;
}
label
{
width:100%;
}
input[type='radio']
{
display:block;
position:relative;
appearance: none;
}
input[type='radio']::before
{
content: " ";
display: block;
position: relative;
width: 17px;
height: 17px;
border: 2px solid #000;
border-radius: 20px;
}
input[type='radio']:checked::after
{
content: " ";
display: block;
position: absolute;
width: 11px;
height: 11px;
top: 5px;
left: 5px;
border-radius: 20px;
background: #000;
}
</style>
</head>
<body>
<form>
<div class="block">
<input id="check-1" type="radio" name="slot-1" value="option-1"/>
<label for="check-1">
<span class="text text--weight-bold text--size-normal">Credit Card</span>
<span class="text--two"></span>
</label>
<a class="style--axuillary" href="/">Change</a>
</div>
<div class="block">
<div class="icon--radio"></div>
<div class="style--wide">
<label for="check-2">Credit Card <input id="check-2" type="radio" name="slot-1" value="option-2"/></label>
<br>
<span>Check it</span>
</div>
<a class="style--axuillary" href="/">Change</a>
</div>
<div class="block">
<input id="check-3" type="radio" name="slot-1" value="option-3"/>
<p style="width:100%;">
<label for="check-3">Credit Card</label>
<br>
<span>Check it</span>
</p>
<a class="" href="/">Change</a>
</div>
</form>
</body>
</html>