@charset "UTF-8";

.informatik-blau {
    background: #0075bf;
    color: #ffffff;
}

span.input:before {
    content: "$ ";
}

span.input:after {
    content: "";
}

span.input {
    font-weight: bold;
    color: yellowgreen;

}

span.output {
    color: white;
    background: black;
}

pre.console {
    background: black;
    padding: 1em;
}

pre.screen {
    border: 5px solid grey;
    background: black;
    padding: 1em;
    color: #00ff00;
    font-weight: bold;
}

span.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

span.blurry {
    filter: blur(7px);
}

div.wishlist {
    font-family: 'Comic Sans MS', serif;
    background: url(../img/papyrus.jpg) no-repeat;
    background-size: cover;
    padding: 2em
}

.question {
    font-weight: bold;
}

pre code {
    color: #d63384;
}

blockquote {
    padding-left: 2em;
    font-style: italic;
}

.table-padded td, .table-padded th {
    padding-left: 2em;
    padding-right: 2em;
}