85 lines
1.9 KiB
CSS
85 lines
1.9 KiB
CSS
.fullscreen {
|
|
width: 100%;
|
|
height: 100%;
|
|
text-align: center; }
|
|
|
|
.button {
|
|
display: inline;
|
|
width: auto;
|
|
padding: 5px 10px;
|
|
border: 1px solid;
|
|
cursor: pointer;
|
|
border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-webkit-border-radius: 3px; }
|
|
.button.gray {
|
|
background-color: #EEE;
|
|
color: #444;
|
|
border-color: #DDD; }
|
|
|
|
/* Scrollbars */
|
|
.data-container .scrollbar-pane {
|
|
margin-right: 8px; }
|
|
.data-container .scrollbar-handle-container {
|
|
width: 8px; }
|
|
.data-container .scrollbar-handle {
|
|
width: 8px; }
|
|
.data-container .scrollbar-handle-container {
|
|
background-color: #FFF; }
|
|
.data-container .scrollbar-handle {
|
|
background-color: #CCC; }
|
|
.data-container .scrollbar-handle:hover {
|
|
background-color: #999; }
|
|
.data-container .scrollbar-handle.move {
|
|
background-color: #AAA; }
|
|
|
|
.player-container .scrollbar-pane {
|
|
margin-right: 8px; }
|
|
.player-container .scrollbar-handle-container {
|
|
width: 8px; }
|
|
.player-container .scrollbar-handle {
|
|
width: 8px; }
|
|
.player-container .scrollbar-handle-container {
|
|
background-color: #222; }
|
|
.player-container .scrollbar-handle {
|
|
background-color: #444; }
|
|
.player-container .scrollbar-handle:hover {
|
|
background-color: #666; }
|
|
.player-container .scrollbar-handle.move {
|
|
background-color: #888; }
|
|
|
|
.error_page {
|
|
position: relative;
|
|
width: 600px;
|
|
text-align: center;
|
|
top: 100px;
|
|
left: 50%;
|
|
margin-left: -300px; }
|
|
.error_page h1 {
|
|
font-size: 150px; }
|
|
.error_page span {
|
|
font-size: 24px; }
|
|
|
|
.kaboom {
|
|
width: 100%;
|
|
height: 30px;
|
|
clear: both; }
|
|
|
|
.auth_notice {
|
|
display: none;
|
|
position: absolute;
|
|
background-color: #07F;
|
|
color: #FFF;
|
|
top: 32px;
|
|
left: 230px;
|
|
padding: 8px;
|
|
border: #05D 1px solid;
|
|
border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-webkit-border-radius: 3px; }
|
|
.auth_notice .arrow {
|
|
float: left;
|
|
margin: -8px 15px 0 8px;
|
|
font-size: 25px;
|
|
font-weight: bold; }
|