﻿div#screen {
    position: fixed;
    left: 0px;
    top: 0px;
    background-image:url("/images/webFun/windows/windows_xp_bliss-wide.jpg");
    background-size: cover;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

div#taskbar {
    position: fixed;
    left: 0px;
    bottom: 0px;
    background-color: #3596ce;
    z-index: 1;
}

div#clock {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 2;
}

div#startMenuBtn {
    position:relative;
    z-index: 2;
}

#BSoD {
    display: none;
}

/*start menu area*/

div#startMenu {
    position: absolute;
    left: 5px;
    height: 1px;
    width: 200px;
    z-index: 2;
    display:none;
    background-color: gainsboro;

}

.smVisible {
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
}

.smPanel {

    /*flex container*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;

    /*flex item*/
    flex:1;
    height: 100%;
}

.smFrame {
    background-color: darkcyan;

    /*Flex container*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;


    /*flex item*/
    flex: 1;
}

.smCenter {
    /*flex container*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;

    /*flex Item*/
    flex: 8;
}

#smLeft{
    background-color:lightgray;

}

#smRight {
    background-color: darkgrey;

}

#smTop{

}

#smBottom{
    /*clear:both;*/
    justify-content: flex-end;
}

#userIcon {
    height: 80%;
    width: 20%;
    border-color: white;
    border-style: solid;
    margin: 3px;

}

#userName {
    align-self: center;
    text-align:center;
    color:white;
    padding:5px;
}

.shutdown {
    height: 70%;
    flex-basis: 10%;
}

#smBottom p {
    font-size: smaller;
    color: white;
    margin: 2px;
}


