File size: 1,046 Bytes
a417977 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
.container {
display: flex;
flex-direction: row;
}
.group {
display: inline-block;
label {
position: relative;
display: inline-flex;
justify-content: center;
align-items: center;
padding: 0 1.25rem;
margin: 0;
border: 0.0625rem solid var(--text-secondary);
border-right: none;
height: 2.25rem;
line-height: 2.25rem;
font-size: 0.9375rem;
text-decoration: none;
color: var(--text-secondary);
white-space: nowrap;
cursor: pointer;
&:hover {
border-color: var(--text-hover-secondary);
color: var(--text-hover-secondary);
}
}
&:first-child label {
border-radius: 1.125rem 0 0 1.125rem;
}
&:last-child label {
border-radius: 0 1.125rem 1.125rem 0;
border-right: 0.0625rem solid var(--text-secondary);
}
input:checked + label {
color: #fff;
background-color: var(--text-secondary);
&:hover {
border-color: var(--text-hover-secondary);
background: var(--text-hover-secondary);
color: #fff;
}
}
}
|