﻿/* Textboxen */
input[type=text], input[type=password], InputText {
    width: 100%;
    height: 32px;
    border: 1px solid black;
    border-radius: 4px;
    margin-bottom: 4px;
}

/* Beschriftungen */
label {
    font-weight: bold;
}

/* Standard-Button */
.buttonStandard {
    height: 32px;
    border: none;
    border-radius: 4px;
    background-color: rgb(241, 223, 52);
    font-weight: bold;
    cursor: pointer;
    padding-left: 8px;
    padding-right: 8px;
}

/* Alternativer Button (Abbrechen etc.) */
.buttonDark {
    height: 32px;
    border: none;
    border-radius: 4px;
    background-color: #545454;
    color: white;
    font-weight: bold;
    cursor: pointer;
    padding-left: 8px;
    padding-right: 8px;
}

/* Mouse-Over bei Buttons */
.buttonStandard:hover, .buttonDark:hover {
    font-size: 1.1em;
}

.marginBefore {
    margin-left: 10px;
}

/* Buttons in Icon-Form */
.clickableIcon {
    font-family: 'iconFont';
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
}
