/*
View element:
Window filling div element that contains a composition of elements that offer one or more specific functionalities.
It is vertically orientated by default, due to possible portrait usage on a smartphone.
*/

div.view {
    display: block;
    background: white;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

div.view > div.view_navigation {
    display: table;
    background: steelblue;
    width: 100%;
    height: 2em;
    color: white;
}

div.view > div.view_navigation > a.button {
    display: table-cell;
    width: 2em;
}

div.view > div.view_navigation a.button:active {
    background: lightsteelblue;
}
div.view > div.view_navigation > a.button > img.icon {
    height: 100%;
}
div.view > div.view_navigation > div.fill {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

div.view > div.view_navigation_menu {
    background: steelblue;
    position: absolute;
    width: 2em;
    z-index: 10;
    top: 2.1em;
    display: none;
}

div.view > div.view_navigation_menu > a.button {
    display: block;
}
div.view > div.view_navigation_menu > a.button > img.icon {
    width: 100%;
}

div.view > div.view_body {
    display: block;
    padding: 0.5em;
    width: calc(100% - 1em);
    height: calc(100% - 3em); /*-2em -0.5em for navigation */
    position: absolute;
}

div#status_bar {
    position: absolute;
    background: lightgrey;
    right: 1em;
    bottom: 1em;
    z-index: 100;
}

div#status_bar > ul#message_list > li {
    font-size: 0.9em;
    padding: 0.4em;
}

div#status_bar > ul#message_list > li:before {
    content: '\2022';
    display: inline-block;
    height: 1em;
    width: 0.6em;
    margin-left: 0.3em;
}


