mirror of
				https://github.com/hyperion-project/hyperion.ng.git
				synced 2025-03-01 10:33:28 +00:00 
			
		
		
		
	* first try * implement hyperion restart. core function is good, but needs a beeter structuring- something for next refactoring session ;-) * several fixes (including osx) merge with upstream some refactoring * add some eye candy to webui
		
			
				
	
	
		
			67 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.5 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:61px;padding-top:20px;}
 | |
| .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;
 | |
| }
 | |
| 
 | |
| #page-content {
 | |
| 	padding-bottom:50px;
 | |
| } |