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