60 lines
1,001 B
SCSS
60 lines
1,001 B
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 'hue-controls';
|
|
@import 'light-group';
|
|
@import 'music-tab';
|
|
@import 'noui-slider';
|
|
|
|
body {
|
|
min-width: 500px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
body > .ember-view {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
body, button {
|
|
font-family: 'Raleway', sans-serif;
|
|
}
|
|
|
|
.ember-app {
|
|
padding-bottom: 50px;
|
|
}
|
|
|
|
.alert {
|
|
margin-bottom: 0;
|
|
border: none;
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
.display-flex {
|
|
display: flex !important;
|
|
}
|