﻿/* Allgemeine Formatierungen */

/* Alle Elemente */
/*
*
{
    padding: 0;
    margin: 0;
    font-size: 12px;
}
*/

HTML, BODY
{
    overflow: auto; /* Scrollbar verhindern */
}

BODY
{
    background-color: #d1dae0;
    color: Black;
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, Sans-Serif;
    font-size: 12px;
    font-size: small;
    height: 100%;
    width: 100%;
}

a
{
    color: Navy;
    background-color: transparent;
}

img
{
    border: none;
}

h1, h1 span
{
    font-size: 24px;
}
h2, h2 span
{
    font-size: 20px;
}
h3, h3 span
{
    font-size: 16px;
}

/* Inputs */
input[type=text], input[type=password], input[type=file], textarea
{
    border: 1px solid #959faa;
    padding: 1px;
    font-family: Arial, Helvetica, Sans-Serif;
    font-size: 12px;
}
textarea
{
    overflow: auto;
}
select
{
    border: 1px solid #959faa;
    font-family: Arial, Helvetica, Sans-Serif;
}
hr
{
    border-style: solid;
    border-color: Navy;
    border-width: 1px;
}


