1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 00:35:00 +00:00
mon-entreprise/source/components/PeriodSwitch.css
2018-11-23 16:01:13 +00:00

32 lines
542 B
CSS

#PeriodSwitch {
text-align: center;
margin: 1em;
}
#PeriodSwitch label {
margin: 0 0.4em;
color: var(--colour);
}
#PeriodSwitch input[type='radio'] {
display: none;
}
input[type='radio'] + span {
display: inline-block;
width: 1em;
height: 1em;
margin: 0 0.3em;
vertical-align: middle;
border-radius: 20px;
cursor: pointer;
box-shadow: 0 0 0px 1px rgb(41, 117, 209);
}
input[type='radio']:checked + span {
background: var(--colour);
border: 4px solid white;
}
input[type='radio']:checked ~ .radioText {
font-weight: 500;
}