﻿/* This is a part of ef.js - ElderForge JavaScript Library - v1.1.0
 * http://ElderForge.net/
 *
 * Copyright (c) 2013 - 2015 ElderForge
 * Released under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * http://ElderForge.net/license.en.txt
 * http://ElderForge.net/license.ru.txt
 *
 * Made by Deus, deus-amd@ngs.ru
 *
 * Date: 2014-02-07
 *
 * Documentation removed from script file (was kinda useless and outdated)
 */

/*#region core*/

* {
    /*//? position*/
    margin: 0;
    padding: 0;
}

body, html {
    /*//? size*/
    width: 100%;
    height: 100%;
    /*//? behavior*/
    overflow-y: hidden;
    /*//? decoration*/
    background-color: royalblue;
    /*//? font*/
    font-weight: 400;
    font-size: 12pt; /*0.8em;*/
    font-family: 'PT Sans';
}

/*#endregion*/

/*#region index-container*/

.index-container {
    /*//? behavior*/
    display: table;
    /*//? size*/
    height: 100%;
    width: 100%;
}

.index-container-header {
    /*//? behavior*/
    display: table-header-group;
}

    .index-container-header .index-container-cell {
    }

.index-container-body {
    /*//? behavior*/
    display: table-row-group;
}

    .index-container-body .index-container-cell {
        /*//? position*/
        position: relative;
    }

.index-container-footer {
    /*//? behavior*/
    display: table-footer-group;
}

    .index-container-footer .index-container-cell {
    }

.index-container-cell {
    /*//? behavior*/
    display: table-cell;
    /*//? size*/
    height: 1px;
}

/*#endregion*/
