19 lines
No EOL
888 B
CSS
19 lines
No EOL
888 B
CSS
div.status_bar_outer {
|
|
background-color: rgba(0,0,0,0.2);
|
|
border: 1px solid rgba(0,0,0,0.4);
|
|
height: 21px;
|
|
width: 240px;
|
|
}
|
|
|
|
div.status_bar_inner {
|
|
background: #a9e4f7; /* Old browsers */
|
|
background: -moz-linear-gradient(left, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
|
|
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */
|
|
background: -webkit-linear-gradient(left, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
|
|
background: -o-linear-gradient(left, #a9e4f7 0%,#0fb4e7 100%); /* Opera11.10+ */
|
|
background: -ms-linear-gradient(left, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=1 ); /* IE6-9 */
|
|
background: linear-gradient(left, #a9e4f7 0%,#0fb4e7 100%); /* W3C */
|
|
height: 21px;
|
|
width: 0%;
|
|
} |