@charset "UTF-8";
/* CSS Document */

body {
    font-family: verdana, arial, sans-serif;
    padding-bottom: 5em;
    margin: 1em 2em;
    background-color: #666666;
    
}
/**
* generelle Anweisungen
*/
h2.head {

    font-weight: 400;
    color: #FFFFFF;
}


h2 code {
    float: right;
    font-size: 1.2em;
    color: blue;
    margin-right: 1em;
}
h2 {
    font-size: 1.3em;
}
hr {
    height: 1px;
    border-color: #999;
    border-width: 1px 0 0 0;
    margin: 2em 0;
}
.flexbox div {
    border: 1px solid #fff;
    padding: 10px;
}
.box-01 {
    background-color: lightskyblue;
}
.box-02 {
    background-color: #FFE874;
}
.box-03 {
    background-color: tomato;
}
.box-04 {
    background-color: lightseagreen;
}
.box-05 {
    background-color: lightgreen;
}

.box-header {
    background-color: #444444;
    height: 150px;
    text-align: center;
    border: 2px solid #222;
}

.box-footer {
    background-color: #444444;
    height: 50px;
    text-align: center;
    border: 2px solid #222;
}

.flexbox {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: #555555;
    border: 2px solid #333;
    margin: 1em 0;
    padding: 1em 1em;
}

#beispiel-02 div {
    -ms-flex: 1 1 auto;
}
#beispiel-03 {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
#beispiel-04 {
    -ms-flex-direction: column;
    flex-direction: column;
}
#beispiel-05 {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}
#beispiel-06 .box-01,
#beispiel-07 .box-01 {
    -ms-flex-order: 2;
    order: 2;
}
#beispiel-06 .box-02,
#beispiel-07 .box-02 {
    -ms-flex-order: 3;
    order: 3;
}
#beispiel-06 .box-03 ,
#beispiel-07 .box-03 {
    -ms-flex-order: 1;
    order: 1;
}
#beispiel-08 {
    -ms-flex-align: stretch;
    max-width: 100%;
}
#beispiel-08 div {
    -ms-flex: 1 1 auto;
}
#beispiel-09 {
    -ms-flex-align: start;
    align-items: flex-start;
}
#beispiel-09 div {
    -ms-flex: 1 1 auto;
}
#beispiel-10 {
    -ms-flex-align: center;
    align-items: center;
}
#beispiel-10 div {
    -ms-flex: 1 1 auto;
}
#beispiel-11 {
    -ms-flex-align: end;
    align-items: flex-end;
}
#beispiel-11 div {
    -ms-flex: 1 1 auto;
}
#beispiel-12 {
    -ms-flex-align: baseline;
    align-items: baseline;
}
#beispiel-12 div {
    -ms-flex: 1 1 auto;
}
#beispiel-12 h2 {
    font-size: 2.5em;
}
#beispiel-14 {
    -ms-flex-pack: end;
    justify-content: flex-end;
}
#beispiel-15 {
    -ms-flex-pack: center;
    justify-content: center;
}

#beispiel-16 {
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#beispiel-17 {
    justify-content: space-around;
}
#beispiel-18,
#beispiel-19,
#beispiel-20,
#beispiel-21,
#beispiel-22 {
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 300px;
}
#beispiel-19 {
    justify-content: flex-end;
}
#beispiel-19 div {
    -ms-flex-align: end;
}
#beispiel-20 {
    justify-content: center;
}
#beispiel-21 {
    justify-content: space-around;
}
#beispiel-22 {
    justify-content: space-between;
}
#beispiel-23 .box-01,
#beispiel-23 .box-02,
#beispiel-23 .box-03 {
    -ms-flex: 1 1 auto;
    flex-grow: 1;
}
#beispiel-24 .box-01 {
    -ms-flex: 1 1 auto;
    flex-grow: 1;
}
#beispiel-24 .box-02 {
    -ms-flex: 4 1 auto;
    flex-grow: 4;
}
#beispiel-24 .box-03 {
    -ms-flex: 1 1 auto;
    flex-grow: 1;
}
#beispiel-25 .box-01 {
    -ms-flex: 0 0 150px;
    flex-basis: 150px;
}
#beispiel-25 .box-02 {
    -ms-flex: 0 0 300px;
    flex-basis: 300px;
}
#beispiel-25 .box-03 {
    -ms-flex: 0 0 150px;
    flex-basis: 150px;
}
#beispiel-26 .box-01 {
    -ms-flex: 1 1 100px;
    flex-basis: 100px;
    flex-grow: 1;
}
#beispiel-26 .box-02 {
    -ms-flex: 1 1 300px;
    flex-basis: 300px;
    flex-grow: 1;
}
#beispiel-26 .box-03 {
    -ms-flex: 1 1 100px;
    flex-basis: 100px;
    flex-grow: 1;
}
#beispiel-27 .box-01 {
    -ms-flex: 1 1 100px;
    flex-basis: 100px;
    flex-grow: 1;
}
#beispiel-27 .box-02 {
    -ms-flex: 4 1 100px;
    flex-basis: 100px;
    flex-grow: 4;
}
#beispiel-27 .box-03 {
    -ms-flex: 1 1 100px;
    flex-basis: 100px;
    flex-grow: 1;
}
#beispiel-28 .box-01 {
    -ms-flex: 1 4 auto;
    flex-shrink: 4;
}
#beispiel-28 .box-02 {
    -ms-flex: 1 5 auto;
    flex-shrink: 5;
}
#beispiel-28 .box-03 {
    -ms-flex: 1 6 auto;
    flex-shrink: 6;
}
#beispiel-29 div,
#beispiel-30 div,
#beispiel-31 div,
#beispiel-32 div {
    min-width: 200px;
}
#beispiel-30 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#beispiel-31 {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}
#beispiel-32 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#beispiel-32 div {
    -ms-flex: 1 1 auto;
    flex-grow: 1;
}

pre {
    border: 1px solid #ccc;
    background-color: lightyellow;
    color: darkblue;
    padding: 1em;
}
.html  {
    background-color: lightcyan;
}
p.text {
    border: 1px solid #ccc;
    padding: 0.75em 1em;
    background-color: aliceblue;
    background-color: #f5f5f5;
}

p.footer {
    font-size: 1.0em;
    color: #ffffff;
}

p.text code {
    font-size: 1.0em;
    color: blue;
    font-weight: 700;
}


a {
    color: #b00;
    text-decoration: none;
}
a:hover,
a:focus, 
a:active {
    color: #b00;
    text-decoration: none;
}
