﻿/*Basic CSS ================================================== */
/*
/*mit dieser CSS werden Standardelemente wie p, h1, h2  
/*usw. attributiert.
/*
/*Author: Andreas Wasner
/*Stand : 05.01.2020                                      
/*
/* ============================================================ */

a {
    color: black;
    text-decoration: none;
}
a, button, input {
    outline: none;
}

h1, h2, h3, h4, p {
    margin: 0;
}
h3, h4 {
    font-stretch: condensed;
}
h1 {
    font-stretch: normal;
    color: rgb(80,80,80);
    font-size: 2.5em;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
    padding: 0.2em 0 0.2em 0;
    width: 60%;
}

h2 {
    font-stretch: semi-condensed;
    font-size: 1.4em;
    font-weight: 300;
    padding: 1.0em 20% 0.2em 2.0em;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

h3, h4 {
    padding: 0;
}

h5 {
    margin-top:30px;
    margin-bottom:0;
    font-size: 1.0em;
    font-weight: 500;
    text-decoration:underline;
    color: rgb(100,100,100); 
    line-height:1.5;
}

p {
    font-size: 0.9em;
    font-weight: normal;
    line-height: 1.70;
    padding: 0.8em 0 0 0;
    text-align: justify;
    color: rgb(30,30,30);
    hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
}


li {
    color: rgb(30,30,30);
}

input {
    height:30px;
    border-style: solid;
    border-width:1px;
    border-radius:5px;
    border-color:lightgray;
    margin: 10px 0 0 0;
    padding: 0 0 0 5px;
    float:none;
}

@font-face {
    font-family: 'nunito sans';
    src: local('nunito sans'), 
         url('../fonts/google/nunito/static/Nunito-Regular.ttf');
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/google/material-design-icons-4.0.0/font/MaterialIcons-Regular.eot); /* For IE6-8 */
    src: local('Material Icons'), 
         local('MaterialIcons-Regular'), 
         url(../fonts/google/material-design-icons-4.0.0/font/MaterialIcons-Regular.woff2) format('woff2'), 
         url(../fonts/google/material-desgin-icons-4.0.0/font/MaterialIcons-Regular.woff) format('woff'), 
         url(../fonts/google/material-design-icons-4.0.0/font/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}

/* SCROLLBAR*/
/* width */
::-webkit-scrollbar {
    width: 6px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: slategray;
}
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: slategray;
    }

