blob: 34bc4283c0da7bee2ccef03d933ca25424270a33 [file] [log] [blame]
<!DOCTYPE html>
<body>
<style>
input {
margin: 4px;
}
</style>
<!-- no style for reference -->
<input type="radio">
<input type="radio" checked> <br>
<!-- border -->
<input type="radio" style="border: 3px solid lime;">
<input type="radio" style="border-radius: 6px;"> <br>
<!-- background -->
<input type="radio" style="background: linear-gradient(to bottom, #dea 0%,#9c7 44%,#494 100%);"> <br>
<!-- shadow -->
<input type="radio" style="box-shadow: 4px 4px 10px rgba(255,0,0,0.5), inset 4px 4px 4px rgba(0,255,0,0.5);"> <br>
<!-- size -->
<input type="radio" style="width: 8px; height; 8px;">
<input type="radio" style="width: 16px; height; 16px;">
<input type="radio" style="width: 24px; height; 24px;"> <br>
<!-- zoom -->
<input type="radio" style="zoom: 1.5;">
<input type="radio" style="zoom: 2;"> <br>
</body>