/**
* NGS-Maintenance-Page
*
* @category         Wordpress-plugin
* @package          NGS_Maintenance_Page
* @author           Nils Guder <nilsguder@neue-gute-software.de>
* @copyright        2016 Nils Guder
* @license          GNU GENERAL PUBLIC LICENSE Version 2
* @link             http://neue-gute-software.de/plugins/ngs-maintenance-page/
* @wordpress-plugin
* Plugin Name: NGS Maintenance Page
* Plugin URI:  http://neue-gute-software.de/plugins/ngs-maintenance-page/
* Description: Shows a maintenance page to visitors
* Version:     1.1.0
* Author:      Nils Guder
* Author URI:  http://neue-gute-software.de
* Text Domain: ngs-maintenance-page
*/

.ngsGewichtsTagebuch{
    margin: 0;
    overflow: hidden;
}
.ngsEditorHolder{
    width: 100%;
    height: 100%;
    display: flex;
}
.ngsEditor{
    color: black;
    padding: 2em 5em 0 5em;
    min-height: 30%;
    max-height: 70%;
    max-width: 70%;
    min-width: 60%;
    overflow: auto;
    opacity: 0.5;
}

.ngsEditor form div{
    margin: 20px 0;
}
.ngsClear{clear: both;}

.ngs-gewichts-tagebuch-wert-holder{
    margin: 10px 0 10px;
    display: block;
    min-width: 25%;
    float: left;
}
.ngs-tagebuch-no-editor{
    margin: 10px 0;
}

#gewichts-tagebuch-werte{
    margin: 8px auto 10px;
    width: 80%;
}
.ngsGewichtsTagebuch h1, .ngsGewichtsTagebuch p{
    opacity: 1;
    background-color: none;
}
.ngsGewichtsTagebuch output{
    display: block;
    min-width: 320px;
    margin: 20px 0;
}

input{
    border-width: 1px;
}

input#datepicker[type="text"]{
    min-width: 200px;
    height: 20px;
    background-color: #FFF;
    border-color: #000;
}

input#weight[type="number"]{
    background-color: #FFF;
    border-color: #000;
}

form#ngs-tagebuch-form{
    display: block;
    margin: 16px 0;
}

form#ngs-tagebuch-form button{
    margin: 8px 0;
}
.right{
    display:block;
    float: right;
}

@keyframes runner{
    100% {background-position: -135px;}
    0% {background-position: 0;}
}

.progresstainer{
    background-color: rgb(209, 232, 232);
    overflow: hidden;
    height: 45px;
}
.runner{
    width: 35px;
    height: 45px;
    background: url('../images/runningMan.png') left center;
    animation: runner 0.3s steps(3);
    animation-iteration-count: 6;
    display: inline-block;
    margin-left: 4px;
    overflow: hidden;
}