﻿/***************************************/
/* Copyright (c) 2015 eEntwicklung.net */
/***************************************/
/* ProgressBar.css                     */

.eE-ProgressBar
{
    height: 20px;
    width: 200px;
    overflow: hidden;
}

.eE-ProgressBar div
{
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    padding: 0;
    text-align: center;
}

.eE-ProgressBar div.eE-ProgressBar-Empty
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
}

.eE-ProgressBar-Empty
{
    background-color: silver;
    background-image: url("img/ProgressBar-Background.png");
}

.eE-ProgressBar div.eE-ProgressBar-Full
{
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    width: 0;
}

.eE-ProgressBar-Full
{
    background-color: gray;
    background-image: url("img/ProgressBar-Background.png");
}

.eE-ProgressBar div.eE-ProgressBar-Text
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
}
