122 lines
No EOL
1.9 KiB
SCSS
122 lines
No EOL
1.9 KiB
SCSS
@import 'ember-modal-dialog/ember-modal-structure';
|
|
@import 'ember-modal-dialog/ember-modal-appearance';
|
|
|
|
@import 'bootstrap'; // used to take out bootstrap scss modules that we don't need
|
|
@import 'paper';
|
|
|
|
@import 'bridge-finder';
|
|
@import 'common';
|
|
@import 'dimmer';
|
|
@import 'fancy-speaker';
|
|
@import 'index';
|
|
@import 'introjs';
|
|
@import 'group-controls';
|
|
@import 'hue-controls';
|
|
@import 'huegasm-variables';
|
|
@import 'light-group';
|
|
@import 'music-tab';
|
|
@import 'noui-slider';
|
|
|
|
html {
|
|
min-height: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
body {
|
|
margin-bottom: $footerHeight + 30px;
|
|
position: static;
|
|
}
|
|
|
|
body, button {
|
|
font-family: 'Slabo 27px', serif;
|
|
}
|
|
|
|
.ember-app {
|
|
padding-bottom: 50px;
|
|
}
|
|
|
|
#footer {
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: $footerHeight;
|
|
p {
|
|
padding-left: 0;
|
|
text-align: center;
|
|
}
|
|
a {
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
|
|
.ember-notify-default.ember-notify-cn {
|
|
top: 20px;
|
|
}
|
|
|
|
.alert {
|
|
margin-bottom: 0;
|
|
border: none;
|
|
}
|
|
|
|
#settings {
|
|
padding-right: 5px;
|
|
text-align: right;
|
|
z-index: 3;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.settings-item:nth-of-type(2){
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.settings-item .settings::before, .settings-item .group::before {
|
|
font-size: 28px;
|
|
transition: 0.1s all ease-in-out;
|
|
}
|
|
|
|
.title {
|
|
margin-bottom: 30px;
|
|
img {
|
|
width: 200px;
|
|
}
|
|
}
|
|
|
|
button.md-warn {
|
|
background: $secondaryThemeColor;
|
|
}
|
|
|
|
div.ember-modal-dialog {
|
|
padding: 20px;
|
|
color: black;
|
|
md-input-container input {
|
|
color: black !important;
|
|
}
|
|
md-input-container label {
|
|
color: rgba(0, 0, 0, 0.26);
|
|
}
|
|
}
|
|
|
|
// fancy webkit scrollbars
|
|
::-webkit-scrollbar {
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
::-webkit-scrollbar:vertical {
|
|
width: 12px;
|
|
}
|
|
|
|
::-webkit-scrollbar:horizontal {
|
|
height: 12px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: rgba(0, 0, 0, .5);
|
|
border-radius: 10px;
|
|
border: 2px solid #ffffff;
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: #ffffff;
|
|
} |