/*
    Element rules
*/
html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
    background-color: #205081;
}

/*
    ID rules
*/
#application {
    height: 100%;
    width: 100%;
}

#settings {
    color: white;
    font-size: xx-large;
}

#editor {
    background-color: #205081;
    border: none;
    padding: 0px;
}

#palette {
    overflow: auto;
    background-color: #205081;
    max-height: 100%;
    padding: 0px;
    display: flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-flow: row wrap;
    flex-direction: row;
    -moz-box-pack: center;
    -webkit-flex-direction: row;
}

#footer {
    background-color: #205081;
    border: none;
    text-align: center;
    padding: 5px;
}

/*
    Class rules
*/
.navbar {
    margin: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.ql-editor {
    color: #d7d7d7;
    background-color: black;
    font-family: "Courier New", Courier, monospace;
    font-size: large;
}

.swatch {
    width: 20%;
    height: 5vh;
    border: 1px solid black;
    font-weight: bold;
    text-align: center;
}

.swatch:hover {
    border: 1px solid white;
}

.blue-background {
    background-color: #205081;
}

.no-padding {
    padding: 0px;
}

.emoticon-face {
    font-size: 25em;
    color: #ffffff;
    text-align: center;
}

.emoticon-text {
    font-size: 5em;
    color: #ffffff;
    text-align: center;
}

.ui-helper-hidden-accessible {
    display: none;
}