﻿/*
    version: 1.0
    last change: friday 24 march 2022
    purpose: 
    - easy finding the styles used in the application
    - color, logo, border, etc.
*/

.mm-margin-right {
    margin-right: 12px;
}
.mm-margin-left {
    margin-left: 12px;
}
.mm-default-height {
    min-height: 500px;
}
.mm-border {
    border: 1px grey solid;
    border-radius: 5px;
}

.mm-centre {
    display: flex;
    justify-content: center;
    margin: 4px;
}

.mm-right {
    display: flex;
    justify-content: right;
    margin: 4px;
}

.mm-left {
    display: flex;
    justify-content: left;
    margin: 4px;
}

.mm-button {
    display: inline-block;
    vertical-align: middle;
    margin: 2px;
    padding: 4px 8px 4px 8px;
    color: white;
    background-color: black;
    border: 1px solid grey;
    border-radius: 5px;
    line-height: 28px; /* <- added this */
    width: 150px; /* <- added this */
    box-sizing: border-box; /* <- added this */
}

.mm-button-active {
    background-color: darkslategray;
}

.legend-group {
    border: 1px solid grey;
    border-radius: 5px;
    width: fit-content;
}

.legend-item {
    padding: 2px 10px 2px 10px;
    border-radius: 2px;
}

.editor-field-normal {
    width: 250px;
}

.editor-field-small {
    width: 150px;
}

.editor-field-medium {
    width: 350px;
}

.editor-field-large {
    width: 550px;
}

.width-normal {
    width: 250px;
}

.width-small {
    width: 150px;
}

.width-medium {
    width: 350px;
}

.width-large {
    width: 550px;
}


.display-label,
.editor-label {
    margin: 1em 0 0 0;
    color: black;
    font-weight: bold;
}

.display-field,
.editor-field {
    font-weight: normal;
    margin: 0.5em 0 0 0;
}

