colette
Version:
A CSS and JS starter kit for 20 Minutes web projects
44 lines (37 loc) • 969 B
text/stylus
// Special Choice Radio buttons
//
// Specific styles for radio buttons.
// Radio Buttons will look like buttons.
//
// Markup: choice.twig
//
// Weight: 7
//
// Styleguide: Forms.choice
.choice
legend
font-weight bold
&-list
margin-top 0
margin-bottom 0
li
list-style-type none
label
display inline-block
position relative
text-align center
border 1px solid var(--color-fade)
background-color var(--color-bg-primary)
border-radius .3em
width 100%
height _rem(38px)
line-height _rem(36px)
transition background .3s ease
input[type=radio]
& + label
padding-left 0
&:before
display none
&:checked + label
color var(--color-base-foreground)
background var(--color-base)