* configurable host overrides * base host overrides on name of service instead of key and hide the options by default * added unit tests * review changes * Refactor options * Refactor * Update Readme * Pump version and update Changelog Co-authored-by: Tobias Jacksteit <me@xtj7.de>
63 lines
873 B
SCSS
63 lines
873 B
SCSS
@import "variables";
|
|
@import "reset";
|
|
@import "form";
|
|
|
|
#moco-bx-root {
|
|
font-family: $font-family;
|
|
color: $font-color;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
|
|
.moco-bx-options {
|
|
padding: 0rem 2rem 2rem;
|
|
|
|
a {
|
|
color: $blue;
|
|
text-decoration: none;
|
|
}
|
|
|
|
p {
|
|
margin: 0.5rem 0;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.5rem;
|
|
margin: 1rem 0 2rem;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.1rem;
|
|
margin: 1rem 0 1rem;
|
|
}
|
|
|
|
label {
|
|
font-weight: normal;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
input {
|
|
box-sizing: border-box;
|
|
padding: 6px 12px;
|
|
height: 32px;
|
|
}
|
|
|
|
.text-success {
|
|
color: $green;
|
|
}
|
|
|
|
.text-danger {
|
|
color: $red;
|
|
}
|
|
|
|
&__host-overrides {
|
|
margin-bottom: 1.5rem;
|
|
text-align: center;
|
|
font-weight: normal;
|
|
}
|
|
|
|
small {
|
|
font-size: 0.8rem;
|
|
}
|
|
}
|
|
}
|