/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 02.02.2015, 17:41:42
    Author     : Leonard
*/

html {
    /*min-width: 450px;*/
}

a {
    color: rgb(255, 255, 150);
}
a:hover, a:focus {
    color: yellow;
}

.navbar-inverse {
    background-image: linear-gradient(
        rgb(150, 0, 0),
        rgb(125, 0, 0)
        );
    border-width: 0;
}

.navbar-inverse .navbar-nav>li>a,
.navbar-inverse .navbar-brand {
    color: white;
}

.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-brand:hover {
    color: rgb(255, 200, 200);
}

.navbar-inverse .navbar-nav>.active>a {
    background-image: linear-gradient(
        rgb(200, 0, 0),
        rgb(150, 0, 0)
        );
}

/* default: xs */
.title-muted-1 {
    color: rgb(190, 0, 0);
    font-size: 30px;
}

.title-muted-1-x {
    font-size: 40px;
}

.title-muted-2 {
    color: rgb(100, 0, 0);
    font-size: 25px;
}
.title-lines-img {
    width: 150px;
}

/* xxs */
@media (max-width: 455px) {
    .xs-bold {
        font-weight: bold;
    }
    
    h1 {
        line-height: 90%;
    }
    
    .title-muted-1 {
        font-size: 20px;
    }

    .title-muted-1-x {
        font-size: 30px;
    }

    .title-muted-2 {
        font-size: 18px;
    }
    .title-lines-img {
        width: 40px;
        height: 10px;
    }
}

@media (min-width: 768px) {
    .title-muted-1 {
        font-size: 50px;
    }

    .title-muted-1-x {
        font-size: 70px;
    }

    .title-muted-2 {
        font-size: 40px;
    }
    .title-lines-img {
        width: 250px;
    }
}

@media (min-width: 992px) {
    .title-muted-1 {
        font-size: 60px;
    }

    .title-muted-1-x {
        font-size: 80px;
    }

    .title-muted-2 {
        font-size: 45px;
    }
}


.jumbotron {
    padding-top: 0;
    color: black;
    background: rgba(255, 255, 255, 0);
}

.jumbotron-bg {
    padding: 40px 25px 15px 25px;
    background: linear-gradient(
        rgb(200, 200, 200),
        white 5%
        );
    border-radius: 0px 0px 50px 50px;
    margin: auto;
}

@media(max-width: 768px) {
    .jumbotron-bg {
        padding: 10px 25px 15px 25px;
    }
}

.content-bg {
    background-image: url('../img/noten-bg.png'); 
    /*background-size: 100%;*/ 
    background-repeat: repeat-y;
    background-position: center;
}

html {
    background: rgb(20, 40, 100);
}

.alert a {
    color: #265a88;
}

.alert-warning {
    border-radius: 50px;
}

.panel {
    background: transparent;
} 
.panel-body {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.2)
        );
}

body {
    background-repeat: no-repeat;

    /*    background-image: linear-gradient(
            rgba(255, 175, 175, 0.5),
            rgba(255, 175, 175, 0.2) 90%,
            rgba(255, 175, 175, 0.0)
            ); */
    background-image: linear-gradient(
        rgb(125, 190, 230),
        rgb(20, 40, 100)
        );
    color: white;
    /*    background-image: radial-gradient(
            circle farthest-corner at 50% 0%,
            rgba(255, 175, 175, 0.75),
            rgba(255, 175, 175, 0.0) 50%
            );*/
}

/*.btn-default {
    border-color: white;
    background-image: linear-gradient(
        rgba(255, 175, 175, 0.5),
        rgba(255, 200, 200, 0.5)
        );
}

.btn-default:focus, .btn-default:hover {
    border-color: white;
    background-color: rgba(255, 220, 220, 0.5);
}*/

.btn-primary {
    border-color: rgb(125, 0, 0);
    background-image: linear-gradient(
        rgb(150, 0, 0),
        rgb(125, 0, 0)
        );
}

.btn-primary:focus, .btn-primary:hover {
    background-color: rgb(125, 0, 0);
    border-color: rgb(125, 0, 0);
}