1
0
Fork 0
oldhaven/public/stylesheets/misc.css

106 lines
2.6 KiB
CSS
Raw Normal View History

2011-06-14 16:05:12 +00:00
.fullscreen {
2011-06-30 02:05:57 +00:00
position: absolute;
z-index: 9999;
top: 0;
left: 0;
2011-06-27 11:14:14 +00:00
width: 100%;
height: 100%;
2011-06-30 02:05:57 +00:00
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)"; }
.fullscreen .inner {
position: relative;
top: 50%;
margin-top: -50px;
height: 100px; }
.button {
2011-06-27 11:14:14 +00:00
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 {
2011-06-29 04:11:54 +00:00
background-color: #e0e0e0;
color: #404040;
text-shadow: #d0d0d0 0px 1px 1px;
border-color: #d0d0d0;
box-shadow: #c0c0c0 1px 1px 0px; }
.button.red {
background-color: #fab0b0;
color: #e05050;
text-shadow: #c08080 0px 1px 1px;
border-color: #eaa0a0;
box-shadow: #da9090 1px 1px 0px; }
2011-06-15 01:42:50 +00:00
2011-06-27 11:14:14 +00:00
/* Scrollbars */
2011-06-27 23:25:27 +00:00
.data-container .scrollbar-pane {
2011-06-27 11:14:14 +00:00
margin-right: 8px; }
2011-06-27 23:25:27 +00:00
.data-container .scrollbar-handle-container {
2011-06-27 11:14:14 +00:00
width: 8px; }
2011-06-27 23:25:27 +00:00
.data-container .scrollbar-handle {
2011-06-27 11:14:14 +00:00
width: 8px; }
2011-06-27 23:25:27 +00:00
.data-container .scrollbar-handle-container {
2011-06-27 11:14:14 +00:00
background-color: #FFF; }
2011-06-27 23:25:27 +00:00
.data-container .scrollbar-handle {
2011-06-27 11:14:14 +00:00
background-color: #CCC; }
2011-06-27 23:25:27 +00:00
.data-container .scrollbar-handle:hover {
2011-06-27 11:14:14 +00:00
background-color: #999; }
2011-06-27 23:25:27 +00:00
.data-container .scrollbar-handle.move {
2011-06-27 11:14:14 +00:00
background-color: #AAA; }
2011-06-27 23:25:27 +00:00
.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 {
2011-06-27 11:14:14 +00:00
background-color: #222; }
2011-06-27 23:25:27 +00:00
.player-container .scrollbar-handle {
2011-06-27 11:14:14 +00:00
background-color: #444; }
2011-06-27 23:25:27 +00:00
.player-container .scrollbar-handle:hover {
2011-06-27 11:14:14 +00:00
background-color: #666; }
2011-06-27 23:25:27 +00:00
.player-container .scrollbar-handle.move {
2011-06-27 11:14:14 +00:00
background-color: #888; }
2011-06-15 01:42:50 +00:00
2011-06-27 11:14:14 +00:00
.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; }
2011-06-15 01:42:50 +00:00
2011-06-16 00:19:40 +00:00
.kaboom {
2011-06-27 11:14:14 +00:00
width: 100%;
height: 30px;
clear: both; }
.auth_notice {
2011-06-27 11:14:14 +00:00
display: none;
position: absolute;
background-color: #07F;
color: #FFF;
top: 32px;
2011-06-30 02:05:57 +00:00
left: 280px;
2011-06-27 11:14:14 +00:00
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; }