2016-06-17 17:37:29 +00:00
|
|
|
.preferences {
|
2016-06-21 03:04:41 +00:00
|
|
|
position: absolute;
|
|
|
|
top: #{66 / $base-font-size}rem;
|
|
|
|
right: #{40 / $base-font-size}rem;
|
2016-07-15 20:54:43 +00:00
|
|
|
width: #{336 / $base-font-size}rem;
|
2016-06-21 03:04:41 +00:00
|
|
|
background-color: $light-button-background-color;
|
2016-06-17 17:37:29 +00:00
|
|
|
display: none;
|
2016-06-21 03:04:41 +00:00
|
|
|
padding: #{16 / $base-font-size}rem #{26 / $base-font-size}rem;
|
2016-06-17 18:31:33 +00:00
|
|
|
&--selected {
|
|
|
|
display: flex;
|
2016-06-20 18:58:15 +00:00
|
|
|
flex-direction: column;
|
2016-06-17 18:31:33 +00:00
|
|
|
}
|
2016-06-17 17:37:29 +00:00
|
|
|
}
|
|
|
|
|
2016-06-17 18:31:33 +00:00
|
|
|
.preferences__exit-button {
|
2016-06-21 03:04:41 +00:00
|
|
|
@extend %icon;
|
|
|
|
padding-top: #{5 / $base-font-size}rem;
|
2016-06-17 17:37:29 +00:00
|
|
|
}
|
2016-06-20 16:45:15 +00:00
|
|
|
|
2016-06-20 19:23:42 +00:00
|
|
|
.preference__plus-button {
|
2016-06-20 18:58:15 +00:00
|
|
|
@extend %preferences-button;
|
|
|
|
}
|
|
|
|
|
2016-06-20 19:23:42 +00:00
|
|
|
.preference__minus-button {
|
2016-06-20 18:58:15 +00:00
|
|
|
@extend %preferences-button;
|
|
|
|
}
|
|
|
|
|
|
|
|
.preferences__heading {
|
|
|
|
display: flex;
|
2016-06-21 03:04:41 +00:00
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: #{20 / $base-font-size}rem;
|
2016-06-20 16:45:15 +00:00
|
|
|
}
|
2016-06-20 18:58:15 +00:00
|
|
|
|
|
|
|
.preference {
|
2016-06-21 03:04:41 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2016-07-11 02:52:48 +00:00
|
|
|
padding-bottom: #{40 / $base-font-size}rem;
|
2016-07-12 02:53:27 +00:00
|
|
|
& + & {
|
|
|
|
border-top: 2px dashed $light-button-border-color;
|
|
|
|
}
|
2016-06-20 18:58:15 +00:00
|
|
|
}
|
|
|
|
|
2016-06-20 19:23:42 +00:00
|
|
|
.preference__title {
|
2016-06-21 03:04:41 +00:00
|
|
|
width: 100%;
|
|
|
|
margin-bottom: #{10 / $base-font-size}rem;
|
2016-06-20 18:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.preference__value {
|
2016-07-12 16:07:06 +00:00
|
|
|
border: 2px solid $light-button-border-color;
|
2016-06-21 03:04:41 +00:00
|
|
|
text-align: center;
|
2016-07-11 23:14:45 +00:00
|
|
|
border-radius: 0%;
|
2016-06-21 03:04:41 +00:00
|
|
|
width: #{48 / $base-font-size}rem;
|
2016-07-11 23:14:45 +00:00
|
|
|
height: #{44 / $base-font-size}rem;
|
|
|
|
margin: 0 #{28 / $base-font-size}rem;
|
|
|
|
padding: 0;
|
2016-07-11 00:13:37 +00:00
|
|
|
background-color: $light-button-background-color;
|
2016-06-20 18:58:15 +00:00
|
|
|
}
|
2016-07-11 02:52:48 +00:00
|
|
|
|
|
|
|
.preference__label {
|
|
|
|
margin: 0;
|
|
|
|
line-height: #{20 / $base-font-size}rem;
|
2016-07-11 23:14:45 +00:00
|
|
|
color: $light-inactive-text-color;
|
2016-07-11 02:52:48 +00:00
|
|
|
&:hover {
|
2016-07-11 23:14:45 +00:00
|
|
|
color: $light-inactive-text-color;
|
2016-07-11 02:52:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-11 12:44:27 +00:00
|
|
|
.preference__vertical-list {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2016-07-11 02:52:48 +00:00
|
|
|
.preference__option {
|
|
|
|
@extend %preference-option;
|
|
|
|
list-style-type: none;
|
2016-07-11 23:14:45 +00:00
|
|
|
padding-left: #{28 / $base-font-size}rem;
|
2016-07-11 02:52:48 +00:00
|
|
|
&--selected {
|
|
|
|
@extend %preference-option--selected;
|
|
|
|
}
|
|
|
|
}
|
2016-07-15 20:47:12 +00:00
|
|
|
|
|
|
|
.preference__button-label {
|
|
|
|
@extend %fake-label
|
|
|
|
}
|