mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
41 lines
555 B
SCSS
41 lines
555 B
SCSS
.option {
|
|
font-size: 1em;
|
|
|
|
input {
|
|
display: none;
|
|
}
|
|
|
|
span {
|
|
// user-select: none;
|
|
// -moz-user-select: none;
|
|
// -webkit-user-select: none;
|
|
|
|
width: 100%;
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0.5em 0.55em;
|
|
|
|
display: inline-block;
|
|
position: relative;
|
|
|
|
transition: all 0.2s;
|
|
|
|
border-radius: 0.5em;
|
|
|
|
&:not(.checked) {
|
|
background-color: #585858;
|
|
|
|
&::before {
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:focus span {
|
|
// outline: 1px solid white;
|
|
border: none;
|
|
}
|
|
}
|