password-manager/frontend/delta/scss/style/settingsPanel.scss

108 lines
1.4 KiB
SCSS
Raw Normal View History

#extraFeaturesPanel {
background-color: $main-alternate-color;
color: $main-alternate-text-color;
header {
text-align: right;
height: 48px;
font-size: 24pt;
.button {
@include icon-font();
.label {
padding-top: 8px;
padding-right: 8px;
}
}
}
2015-01-21 18:29:30 +01:00
& > div {
border-top: 1px solid white;
2015-01-21 18:29:30 +01:00
& > ul > li {
// padding: 10px;
// padding-right: 0px;
border-bottom: 1px solid white;
2015-01-21 18:29:30 +01:00
& > ul {
padding-left: 10px;
}
// &:last-child {
// border-bottom: 1px solid white;
// }
2015-01-21 18:29:30 +01:00
&.closed > ul {
display: none;
visibility: hidden;
}
}
ul {
li {
& > ul > li {
padding: 10px;
padding-right: 0px;
& > div {
padding: 4px;
}
}
&.open {
}
&.close {
}
h1 {
cursor: pointer;
font-size: 16pt;
padding: 10px;
}
h2 {
font-weight: 300;
font-size: 14pt;
}
h3 {
font-size: 12pt;
}
p {
font-size: 10pt;
font-weight: 100;
padding-bottom: 5px;
line-height: 1.2em;
2015-01-21 18:29:30 +01:00
}
a.button {
@include border-radius(2);
display: inline-block;
2015-03-11 18:28:28 +01:00
padding: 10px 16px;
2015-01-21 18:29:30 +01:00
background-color: green;
color: white;
&:hover {
color: lightgrey;
};
2015-03-11 18:28:28 +01:00
&.disabled {
background-color: #999;
&:hover {
color: white;
};
}
2015-01-21 18:29:30 +01:00
}
}
}
}
}