You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
627 B
42 lines
627 B
.options {
|
|
left: 900px;
|
|
height: 100%;
|
|
min-width: 200px;
|
|
position: absolute;
|
|
text-align: right;
|
|
top: 0;
|
|
width: 200px;
|
|
}
|
|
|
|
.option-divider {
|
|
margin: 19px 0 19px 25%;
|
|
width: 75%;
|
|
}
|
|
|
|
.option-item {
|
|
background: teal;
|
|
border-radius: 16px 0 0 16px;
|
|
cursor: pointer;
|
|
height: 24px;
|
|
line-height: 24px;
|
|
margin-bottom: 4px;
|
|
padding: 4px 16px 4px 4px;
|
|
}
|
|
|
|
.option-item:hover {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.option-item.inactive {
|
|
opacity: 0.2;
|
|
}
|
|
|
|
.option-text {
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.option-toggle {
|
|
display: inline-block;
|
|
margin-left: 25px;
|
|
}
|
|
|