Kore Web UI

by salitrapraveen

HTML

<h1>
KoreManager Console
</h1>

<div id="content">
<div id="testbed-box">
    <h2>
    TestBeds
    </h2>
</div>
<div id="vm-box">
    <h2>
Virtual Machine
    </h2>
</div>
</div>

CSS

body {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    font-family: Arial,Helvetica,sans-serif;
}

h1 {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    margin: 0px 0 10px 0;
    padding: 4px;
    background-color: #3A5157;
    position: relative;
}

h2{
    text-align: left;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    background-color: #3A5157;
    position: relative;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    box-shadow: 0px 2px 4px #587C85;
    margin: 0px -2px 20px -2px;
    padding: 4px;
}


#content {
    border: 1px solid #B900B6;
    border-top-color: #B900B6;
    margin: 2px;   
    background-color: #E0E0E0;    
}

#testbed-box {
    position: relative;
    top: 10px;
    bottom: 10px;
    left: 10px;
    width: 200px;
    min-height: 100px;
    float: left;
    box-shadow: 0px 4px 2px #999999;
    border-radius: 2px;       
}

#vm-box {
    min-width: 200px;
    min-height: 100px;
    position: absolute;
    left: 230px;
    top: 10px;
    bottom: 10px;    
    box-shadow: 0px 4px 4px #999999;
    border-radius: 2px;       
}