﻿/* leanDraft CSS */

body {
    height: 100%;
    padding: 0;
    margin: 0;
    position: fixed;
    width: 100%;
    font-size:110%;
}

a {
    color: gray;
    text-decoration: none;
}

textarea {
    
    width: 100%;
    height: 100%;
    z-index: 1;
    font-family: Georgia !important;
    font-size: 120%;
    line-height: 135%;
    color: #1A1A1A;
    padding: 60px 20%;
}

.liner {
    overflow: hidden; /* clear the float */
    height: 100% !important;
    min-height: 100%;
    position: absolute;
    width: 100%;
    opacity: 0;
}

#main, #secondary, #left, #right, #info {
    border: 0px solid transparent;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

#left, #right {
    height: 100% !important;       
}

#left {
    width: 100%;
    float: left;   
}

#right {
    overflow: hidden;
    position: relative;
    background-color: #F5F5F5;
    z-index:1 !important;    
}

#main {
    border-right: 1px solid #D6D6D6;
}

#secondary {
    background-color: #F5F5F5;
    z-index: 2 !important;
}

/* Button */
#handle {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    right: -15px;
    background-color: #f2f2f2;
    border: 1px solid #D6D6D6;
    z-index: 99;
    cursor:pointer !important;
    border-radius: 100%;
    font-size: 14px;
    text-align:center;
}

#handle:hover {    
    background-color:#EBEBEB !important;
    -webkit-transition: background-color 0.4s ease;
    -moz-transition: background-color 0.4s ease;
    -o-transition: background-color 0.4s ease;
    -ms-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;   
}

@media screen and (max-width: 768px) {
    #handle-mobile {
        width: 30px;
        height: 30px;
        position: absolute;
        top: 50%;
        margin-top: -15px;
        left: -18px;
        background-color: #f2f2f2;
        border: 1px solid #D6D6D6;
        z-index: 999 !important;
        cursor: pointer !important;
        border-radius: 100%;
        font-size: 14px;
        text-align: center;
    }
}



#logo {
    position:absolute;
    left: 50%;
    margin-left: -16px;
    bottom: 10px;
    height: 32px;
    width: 32px;
    background-image:url(../favicon.png);
    opacity:0.5;
    z-index: 99;
}
#logo:hover {
    opacity:0.8;
    -webkit-transition: opacity  0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -o-transition: opacity  0.4s ease;
    -ms-transition: opacity  0.4s ease;
    transition: opacity  0.4s ease;
}

#info {
    position:absolute;
    bottom: 0;
    left:0;
    padding: 40px;
    background-color: #F5F5F5;
    width: 100%;
    height:100%;
    color: #4D4D4D;
    font-size:110%;
}

