
/*------ style-camping.css ------*/

@import url(http://fonts.googleapis.com/css?family=Ubuntu:400,400italic,500,500italic);


@media screen {

    /* Die Schriftgrößeneinheit rem (root em) bezieht sich immer auf die Angaben im html (=root) Element */
    html {
        font-family: 'Ubuntu', sans-serif;
        font-size: 100%;
    }
    
    body {
        margin: 1rem 0 0 1rem;
        font-size: 14px;
        font-size: 0.875rem;
    }
    
    header.h1 {
        font-weight: 500;
        font-size: 1.375rem;
    }
    
    nav {
        max-width: 20%;
        margin: 0;
        padding: 0;
    }
    
    nav ul{
        margin 0;
        padding: 0;
        overflow: hidden;
        list-style-type: none;
        border-radius: 0 0 1em 1em;
    }
    
    nav li {
        display: block;
        border-bottom: 1px solid #ddd;
    }
    
    nav li:last-of-type {
        border-bottom: none;
    }
    
    nav li a {
        display: block; 
        text-decoration: none;
        background: #eee;
        color: #333;
        padding: .5rem;
        text-align: center;
        font-weight: 500;
    }
    
    nav a:hover, nav a:focus {
        text-decoration: underline;
    }
    
    section#fehler {
        padding: .5rem 0;
    }
    
    section#eintrag {
        
    }
    
    section#ausgabe {
        padding: 0;
    }
    
    section#items {
        margin: 2rem 0;
    }
    
    section#items span {
        padding: 1rem;
        border: 1px solid red;
    }
    
    .um-form-edit {
        float: left;
    }
    
    .um-form-del {
        float: left;
    }
    
    .item {
        
    }
    
    .clear {
        clear: both;
    }
    
    .btnStyle {
        padding-left: 0;
        border: none;
        background-color: transparent; 
    }
    
    .btnImg {
        vertical-align: -.19rem;
    }
    
    span.fehler {
        padding: 1rem;
        border: 1px solid red;
        font-weight: 500;
        font-size: 1rem;
    }
    
    label {
        display: block;
        margin-bottom: .5rem;
        font-weight: 500;
        text-decoration: underline;
    }
    
    span.label {
        padding: 1.3rem 0;
    }
    
    input#radio {
        margin-bottom: .5rem;
    }
    
    th {
        text-align: left;
    }
    
    .spalten {
        -webkit-column-count: 4; /* Chrome, Safari, Opera */
        -moz-column-count: 4; /* Firefox */
        column-count: 4;
    }

} /* Ende @media */


/* min-width = oberhalb einer Breite von XXXpx des Screens sind diese Eigenschaften aktiv.
   min-width => Desktop-Bereich weil größerer Bereich 
   min-width => Mobile-First, weil die Hauptdefinitionen (@media ohne Breite) für kleinere Bildschirme passen.
   ----------------------------------------------------------------------------------------
   max-width = unterhalb einer Breite von XXXpx des Screens sind diese Eigenschaften aktiv.
   max-width => Mobile-Bereich weil kleinerer Bereich 
   max-width => Desktop-First, weil die Hauptdefinitionen (@media ohne Breite) für größere Bildschirme passen.*/
@media screen and (max-width: 800px) {
    
    html {
        font-size: 80%; /* bei 100% wäre das Browserdefault, 16px  */
    }
    
    nav {
        max-width: 95%;
    }
    
    .spalten {
        -webkit-column-count: 2; /* Chrome, Safari, Opera */
        -moz-column-count: 2; /* Firefox */
        column-count: 2;
    }
    
} /* Ende @media screen min-width 560px */

@media print {
    html {
        font-family: 'Ubuntu', sans-serif;
        font-size: 80%;
    }
    
    body {
        margin: 0;
        padding: 0;
    }
    
    header.h1 {
    font-weight: 500;
    font-size: .875rem;
    }
    
    th.th:first-child {
        text-align: left;
        padding-left: 0;
    }
    
    th.th {
        text-align: left;
        padding-left: 2.3rem;
    }
    
    td.td:first-child {
        padding-left: 0;
    }
    td.td {
        padding-left: 2.3rem;
    }
} /* Ende @media print */








