105 lines
1.6 KiB
SCSS
105 lines
1.6 KiB
SCSS
@import 'ember-modal-dialog/ember-modal-structure';
|
|
@import 'ember-modal-dialog/ember-modal-appearance';
|
|
|
|
@import 'huegasm-variables';
|
|
|
|
@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 'introjs';
|
|
@import 'hue-controls';
|
|
@import 'light-group';
|
|
@import 'music-tab';
|
|
@import 'noui-slider';
|
|
|
|
body > .ember-view {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
flex-direction: column;
|
|
}
|
|
|
|
body, button {
|
|
font-family: 'Slabo 27px', serif;
|
|
}
|
|
|
|
#huegasm {
|
|
flex: 1;
|
|
}
|
|
|
|
.ember-app {
|
|
padding-bottom: 50px;
|
|
}
|
|
|
|
.footer {
|
|
width: 100%;
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.footer-text {
|
|
display: inline-block;
|
|
position: relative;
|
|
bottom: 10px;
|
|
font-size: 18px;
|
|
a {
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
|
|
.alert {
|
|
margin-bottom: 0;
|
|
border: none;
|
|
}
|
|
|
|
|
|
.title {
|
|
margin-bottom: 20px;
|
|
img {
|
|
width: 200px;
|
|
}
|
|
}
|
|
|
|
button.md-warn {
|
|
background: $secondaryThemeColor;
|
|
}
|
|
|
|
div.ember-modal-dialog {
|
|
padding: 20px;
|
|
color: $blackish;
|
|
md-input-container {
|
|
width: 100%;
|
|
input.md-input[type="text"] {
|
|
color: $blackish !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;
|
|
}
|