This repository has been archived on 2026-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
huegasm/app/styles/app.scss

308 lines
4.7 KiB
SCSS

@import 'ember-paper';
@import 'bower_components/bootstrap-sass/assets/stylesheets/_bootstrap';
@import 'ember-modal-dialog/ember-modal-structure';
@import 'ember-modal-dialog/ember-modal-appearance';
$playerBackColor: #F12B24;
$playerHeight: 400px;
$playListBackgroundColor: #1E1E1E;
// BRIDGE FINDER
#finderContainer {
}
#pressButtonBridgeImg {
width: 200px;
margin: 0 auto 0 auto;
display: inherit;
}
.noTextDecoration {
text-decoration: none;
}
md-content {
max-width: 800px;
}
// BRIDGE CONTROLS
.navigation {
margin: 0 auto 0 auto;
padding: 30px 0 30px 0;
}
.navigationItem {
cursor: pointer;
font-family: 'Slabo 27px', serif;
font-size: 18px;
padding: 0 10px 0 10px;
}
.navigationItem:hover{
text-decoration: underline;
}
.navigationItem.active {
font-weight: bold;
cursor: default;
}
.navigationItem.active:hover {
color: #000;
text-decoration: none;
}
// LIGHT GROUP
.groupPanel {
border-right: 1px solid black;
}
.lightGroup {
margin: 0 auto 0 auto;
}
.hueLight {
margin-right: 10px;
border-radius: 20px;
}
.hueLight.inactive {
cursor: pointer;
background-color: rgba(192, 192, 192, 0.7);
}
.hueLight.unreachable {
background-color: rgba(255, 0, 0, 0.7);
}
.hueLight.active:hover {
cursor: pointer;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
-webkit-transform: scale(1.2);
transform: scale(1.2);
-webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.ember-modal-overlay.translucent {
background-color: #000000;
}
md-icon {
color: rgba(0, 0, 0, 0.54) !important;
}
md-icon.menu {
margin: 30px 0 0 16px;
}
.addButton {
cursor: pointer;
float: right;
margin-right: 16px;
}
.removeButton {
cursor: pointer;
margin: 10px 0 10px auto;
}
.sideNavTitle {
margin-left: 16px;
font-family: 'Slabo 27px', serif;
}
md-toolbar {
background-color: inherit !important;
}
.innerControlFrame {
height: 100vh;
}
// GROUP CONTROL
.groupRow.selectedRow {
background-color: #7F7F7F !important;
color: white;
}
.groupRow:hover {
background-color: #c3c3c3;
}
.groupRow.selectedRow .groupSelect {
cursor: default;
}
.groupSelect {
padding: 10px 0 10px 0;
cursor: pointer;
width: 70%;
font-family: 'Open Sans', sans-serif;
}
.groupRow:hover * .close {
display: block;
}
.groupRow:hover * .close {
display: block;
}
.selectedRow * .close {
color: white !important;
}
.selectedRow.groupRow * .close:hover {
color: darken(white, 20%) !important;
}
.groupRow * .close:hover {
color: darken(#333333, 20%) !important;
}
.close:hover {
opacity: 1;
}
.close {
color: rgb(51, 51, 51);
display: none;
opacity: 1;
text-shadow: none;
}
// MUSIC CONTROL
#playerControls {
opacity: 0;
transition: all 0.2s ease-in-out;
position: absolute;
bottom: 0;
left: 0;
padding: 10px;
width: 100%;
color: white !important;
z-index: 20;
background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}
#playerTimeControls {
position: relative;
font-size: 12px;
top: 2px;
margin-left: 10px;
}
#playerControlsRight {
float: right;
}
.playerControllIcon {
color: #BBBBBB !important;
cursor: pointer;
transition-duration: 0.1s;
}
.playerControllIcon:hover {
color: white !important;
}
#playerArea {
height: $playerHeight;
background-color: black;
display: inline-block;
}
#playerArea:hover #playerControls {
opacity: 1;
}
#playlist {
height: $playerHeight;
background-color: $playListBackgroundColor;
}
.noUi-origin {
background-color: black;
border-radius: 5px;
}
.noUi-base {
background-color: $playerBackColor;
border-radius: 5px;
}
#volumeBar {
width: 100px;
height: 8px;
display: inline-block;
}
.noUi-horizontal .noUi-handle {
width: 7px;
height: 21px;
left: -1px;
top: -8px;
cursor: pointer;
transition-duration: 0.1s;
background: #BBBBBB !important;
}
.noUi-horizontal .noUi-handle:hover {
background: white !important;
}
.noUi-handle:after, .noUi-handle:before {
content: none;
}
#seekSlider {
height: 6px;
margin-bottom: 10px;
transition-duration: 0.2s;
}
#addMusicIcon {
float: right;
}
#seekSlider:hover {
height: 8px;
}
#seekSlider:hover * .noUi-handle {
opacity: 1;
}
#seekSlider * .noUi-handle {
border: none;
height: 13px;
width: 13px;
border-radius: 50%;
top: -4px;
left: -6px;
opacity: 0;
transition-duration: 0.1s;
background-color: $playerBackColor !important;
box-shadow: none;
}
#playListControls {
margin-top: 10px;
padding-bottom: 10px;
border-bottom: 1px solid #3a3a3a;
}
.smallMarginRight {
margin-right:10px;
}
#playListArea {
background: lighten($playListBackgroundColor, 20%);
width: 100%;
height: 333px;
margin: 10px auto 0 auto;
border-radius: 5px;
}