mon-entreprise/source/components/PeriodSwitch.css

39 lines
630 B
CSS
Raw Normal View History

#PeriodSwitch {
margin: 1em;
2018-11-21 14:46:51 +00:00
display: flex;
align-items: center;
justify-content: center;
}
2019-03-27 16:05:27 +00:00
#PeriodSwitch .base {
background: var(--colour);
2019-03-27 16:09:00 +00:00
border-radius: 0.3em;
2019-03-27 16:05:27 +00:00
padding: 0.4em;
}
#PeriodSwitch label {
color: var(--colour);
}
#PeriodSwitch input[type='radio'] {
position: fixed;
left: -100%;
}
2019-03-27 16:05:27 +00:00
#PeriodSwitch .radioText {
cursor: pointer;
2019-03-27 16:09:00 +00:00
border-radius: 0.3em;
2019-03-27 16:05:27 +00:00
padding: 0 0.6em;
color: white;
}
2019-03-27 16:05:27 +00:00
#PeriodSwitch .radioText:hover {
2019-03-27 16:09:00 +00:00
text-decoration: underline;
}
2019-03-27 16:05:27 +00:00
#PeriodSwitch input[type='radio']:checked + .radioText {
background: white;
border: 4px solid white;
2019-03-27 16:05:27 +00:00
color: var(--colour);
2019-03-27 16:09:00 +00:00
text-decoration: none;
}