155 lines
2.3 KiB
SCSS
155 lines
2.3 KiB
SCSS
@import "rounded";
|
|
|
|
.fullscreen {
|
|
position: absolute;
|
|
z-index: 9999;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #ffffff;
|
|
text-align: center;
|
|
|
|
background: rgba(255, 255, 255, 0.9);
|
|
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5ffffff, endColorstr=#e5ffffff);
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5ffffff, endColorstr=#e5ffffff)";
|
|
|
|
.inner {
|
|
position: relative;
|
|
top: 50%;
|
|
margin-top: -50px;
|
|
height: 100px;
|
|
}
|
|
}
|
|
|
|
.button {
|
|
display: inline;
|
|
width: auto;
|
|
padding: 5px 10px;
|
|
border: 1px solid;
|
|
cursor: pointer;
|
|
@include rounded(3);
|
|
|
|
&.gray {
|
|
background-color: #e0e0e0;
|
|
color: #404040;
|
|
text-shadow: #d0d0d0 0px 1px 1px;
|
|
border-color: #d0d0d0;
|
|
box-shadow: #c0c0c0 1px 1px 0px;
|
|
}
|
|
|
|
&.red {
|
|
background-color: #fab0b0;
|
|
color: #e05050;
|
|
text-shadow: #c08080 0px 1px 1px;
|
|
border-color: #eaa0a0;
|
|
box-shadow: #da9090 1px 1px 0px;
|
|
}
|
|
|
|
&.big {
|
|
font-size: 22px;
|
|
}
|
|
}
|
|
|
|
/* Scrollbars */
|
|
|
|
|
|
.data-container {
|
|
.scrollbar-pane {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.scrollbar-handle-container {
|
|
width: 8px;
|
|
}
|
|
|
|
.scrollbar-handle {
|
|
width: 8px;
|
|
}
|
|
.scrollbar-handle-container {
|
|
background-color: #FFF;
|
|
}
|
|
.scrollbar-handle {
|
|
background-color: #CCC;
|
|
|
|
&:hover {
|
|
background-color: #999;
|
|
}
|
|
|
|
&.move {
|
|
background-color: #AAA;
|
|
}
|
|
}
|
|
}
|
|
|
|
.player-container {
|
|
.scrollbar-pane {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.scrollbar-handle-container {
|
|
width: 8px;
|
|
}
|
|
|
|
.scrollbar-handle {
|
|
width: 8px;
|
|
}
|
|
.scrollbar-handle-container {
|
|
background-color: #222;
|
|
}
|
|
.scrollbar-handle {
|
|
background-color: #444;
|
|
|
|
&:hover {
|
|
background-color: #666;
|
|
}
|
|
|
|
&.move {
|
|
background-color: #888;
|
|
}
|
|
}
|
|
}
|
|
|
|
.error_page {
|
|
position: relative;
|
|
width: 600px;
|
|
text-align: center;
|
|
top: 100px;
|
|
left: 50%;
|
|
margin-left: -300px;
|
|
|
|
h1 {
|
|
font-size: 150px;
|
|
}
|
|
|
|
span {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
|
|
.kaboom {
|
|
width: 100%;
|
|
height: 30px;
|
|
clear: both;
|
|
}
|
|
|
|
.auth-notice {
|
|
display: none;
|
|
position: absolute;
|
|
background-color: #60a0ff;
|
|
color: #ffffff;
|
|
top: 32px;
|
|
left: 290px;
|
|
line-height: 35px;
|
|
padding-right: 10px;
|
|
border: #4080dd 1px solid;
|
|
@include rounded(3);
|
|
cursor: pointer;
|
|
|
|
.arrow {
|
|
float: left;
|
|
margin: -5px 10px 0 10px;
|
|
font-size: 25px;
|
|
font-weight: bold;
|
|
}
|
|
} |