mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 08:33:00 -06:00
48 lines
722 B
SCSS
48 lines
722 B
SCSS
:host {
|
|
display: flex;
|
|
flex-direction: row;
|
|
min-height: 100%;
|
|
}
|
|
|
|
.radio-body {
|
|
min-width: 100%;
|
|
padding: 12px;
|
|
|
|
>div:first-child {
|
|
padding-right: 14.5px;
|
|
}
|
|
}
|
|
|
|
.radio-button-group {
|
|
justify-content: flex-start;
|
|
|
|
*:nth-last-child(2) {
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
|
|
.radio-button-mini {
|
|
&.all-off {
|
|
background: rgb(100, 50, 50);
|
|
}
|
|
|
|
&.all-on {
|
|
background: rgb(50, 100, 50);
|
|
}
|
|
}
|
|
|
|
.radio-system {
|
|
font-family: Roboto, 'Helvetica Neue', sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
|
|
&:not(:last-child) {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
legend {
|
|
opacity: .8;
|
|
padding: 0 12px;
|
|
}
|
|
} |