Envelope Barkyard Remix

by Reusablecode

HTML

<div id="page">
    
    <div id="panel-1">
        <div id="header_logo">My Logo</div>
        <div id="header_signin">Sign In</div>
    </div>
    
    <div id="body">
        
        
        
        <div id="body_box1">body_box1</div>
        
        <div id="body_box2">body_box2</div>
        
        <div id="body_container">
            

            <div class="body_container_box1">body_container_box1</div>
            <div class="body_container_box1">body_container_box1</div>
            <div class="body_container_box2">body_container_box2</div>
            
        </div>
        
        
    </div>
    
</div>

CSS

#page {
    position: absolute;
    top: 0;
    left: 0;
    width: 8.5in;
    height: 11in;
}

#panel-1{
    position: relative;
    width: 100%;
    height: 33.3%;
    background: white;
}

#header_logo {
    position: absolute;
    top: 10px;
    left: 10px;
}

#header_signin {
    position: absolute;
    top: 10px;
    right: 10px;
}


#body {
    position: relative;
    width: 100%;
    height: 80%;
    background-color: skyblue;
}


#body_box1 {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 100px;
    height: 100px;
    background-color: navajowhite;
}

#body_box2 {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 100px;
    height: 100px;
    background-color: rgba(245,245,245,.5); /*whitesmoke*/
}

#body_container {
    display: inline-block;
    position: absolute;
    top: 200px;
    width: 50%;
    height: 400px;
    border-style: dashed;
    border-width: 7px;
    background: grey;

}

.body_container_box1 {
    display: inline-block;
    position: relative;
    width: 200px;
    height: 100px;
    background-color: orange;
    border: dotted;

}

.body_container_box2 {
    position: relative;
    width: 200px;
    height: 100px;
    background-color: green;
    border-radius: 20px;

}