mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
adfe2a4b23
* implement effects included in hyperiond binary * cleanup * remove install of effects dir. People who wants to develop effects has to copy them from github effect params for initial effects can be changed in config permanently and other effect params can be changed via json (currently only temporarily) * fix schema of fadecandy webui fix display of specific led options * add leddevice write support * cleanup * webui: tune hue code * when use json effect definition from putsiede hyperiond but want to use py script from inside hyperiond use ad a : e.g. fade.py needs a fade.py near the json file, but :fade.py is taken from resource inside hyperiond * add ability to di * add abiloty to diable effcts via hyperion config * use effect name instead of script in active effects and prio register * finally solve open file handle during effect is playing. Now script is read before, then file closed and then t is run by python * fix some webui things - led config tabs - inital loading screen optimize qrc file generation fix compile warning in hyperion.cpp * cleanup * more cleanup
64 lines
2.4 KiB
CSS
64 lines
2.4 KiB
CSS
/**General**/
|
|
@font-face {
|
|
font-family: "Roboto";
|
|
src: url("../fonts/Roboto-Regular.woff") format('woff'),
|
|
url("../fonts/Roboto-Regular.ttf") format('ttf');
|
|
}
|
|
body{font-family:Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:15px;}
|
|
/*remove padding on all col elements for mobile view*/
|
|
@media (max-width: 767px){div[class*="col-"] {padding:0;}}
|
|
/*icon spacing*/
|
|
.fa-fw{margin-right:5px;}
|
|
/*borderless table*/
|
|
table.borderless td,table.borderless th{border: none !important;}
|
|
|
|
/*Header*/
|
|
.navbar-brand{padding: 5px;padding-left:20px;height:60px;}
|
|
.sidebar{margin-top:91px;}
|
|
.dropdown{font-size:18px;}
|
|
@media (max-width: 767px) {.sidebar{margin-top:0px;}}
|
|
|
|
/*Panels*/
|
|
.panel-heading{font-size:18px;}
|
|
|
|
/*Dashboard*/
|
|
.component-on{color:green;}
|
|
.component-off{color:grey;}
|
|
|
|
/*Colorpicker 2x*/
|
|
.colorpicker-2x .colorpicker-saturation {width: 200px;height: 200px;}
|
|
.colorpicker-2x .colorpicker-hue,.colorpicker-2x .colorpicker-alpha {width: 30px;height: 200px;}
|
|
.colorpicker-2x .colorpicker-color,.colorpicker-2x .colorpicker-color div {height: 30px;}
|
|
.colorpicker-2x .colorpicker-selectors i{height:20px;width:20px;}
|
|
|
|
/*Support page*/
|
|
.unlink,.unlink:hover{color:#333;text-decoration:none;}
|
|
.support-container ul{padding-left:0px;list-style-type: none;}
|
|
.support-container{text-align: center;margin-top:15px;color:#333;}
|
|
.support-container .fa{line-height:58px;font-size:40px;width:100px;height:100px;padding:20px;border-radius: 120px;border: 1px solid;transition: background-color 0.5s linear, color 0.5s linear;}
|
|
.support-container h4{margin-top:13px;}
|
|
.support-container:hover .bg-color-fb{background-color:#3b5998;color:white;}
|
|
.support-container:hover .bg-color-tw{background-color:#1da1f2; color:white;}
|
|
.support-container:hover .bg-color-g{background-color:#cc181e; color:white;}
|
|
.support-container:hover .bg-color-wf{background-color:#0088cc; color:white;}
|
|
.support-container:hover .bg-color-btc{background-color:#f7931a; color:white;}
|
|
.support-container:hover .bg-color-pp{background-color:#0070ba; color:white;}
|
|
.support-container:hover .bg-color-am{background-color:#ef9c00; color:white;}
|
|
|
|
/*Config introduction*/
|
|
.introd{padding-left:14px;border-left:5px solid #0088cc;}
|
|
.introd h4{line-height:25px;}
|
|
|
|
.overlay {
|
|
background-image: url('/img/hyperion/hyperionlogo.png');
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-color: rgba(1, 1, 1, 0.7);
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
z-index:99999;
|
|
}
|