@charset "utf-8";

/**
 * @copyright     Copyright(C) 2016 otela Enterprise Systems
 * @description   CSS für die Dokumentation
 * @author        Markus Bröker<markus.broeker@otela.net>
 */

html, body,
h1, h2, h3, h4,
p, hr, ol, ul, li {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
}

html {
    color: #080808;
    background-color: #ccc;
}

body {
    font-size: 1.25em;
    font-family: "Trebuchet MS","Geneva CE",lucida,sans-serif;
}

h1, h2, h3, h4 {
    color: #006aeb;
}

hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

p {
    padding: 5px;
}

p.strong {
    color: #006aeb;
}

ul {
    margin-left: 20px;

    padding: 10px;
}

ol {
    list-style: none;
}

ol.numbered {
    list-style: decimal;
}

ol li, ul li {
    display: block;
}

.main {
    padding: 3%;
}

.content {
    padding: 15px;
    background-color: #fff;
}

.content p {
    margin: 5px;
    padding: 5px;
}

.content a {
    color: #006aeb;

    font-weight: bold;
    text-decoration: none;
}

.content a:hover {
    color: #006aeb;

    font-weight: bold;
    text-decoration: underline;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clearfix {
    clear: both;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

.full-width {
    width: 100%;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.strong {
    font-weight: bold;
}

pre {
    overflow: hidden;
    
    color: #080808;
    background-color: #ccc;
}

.footer {
    margin-top: 15px;
}

@media screen and (max-width: 1024px) {
    img {
        width: 100%;
    }

    .description-block .right {
        display: none;
    }
}