Receipt with Sidebar

by technotarek

HTML

<link rel="stylesheet" href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css">
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css">

<div class="container-fluid">
    <div class="row-fluid">
        <div class="span9 container-receipt">
            <div class="row-fluid">
                <div class="span10 offset1">
                    <iframe src="https://www.nwica.org/pay/receipt/MGlqOThmeGpyZkVtR3dkVGlYQXV2MjFuUGZ4bVRwcFk" width="100%"></iframe>
                </div>
            </div>
        </div>
        <div class="span3 container-sidebar">
            <!--Sidebar content-->
            <h2>Log</h2>
            <button type="button" class="btn btn-primary">Show Receipt</button>            
        </div>
    </div>
</div>

CSS

.container-receipt {
    background: url(http://s27.postimg.org/nbg2a362r/grey_wash_wall.png) repeat 0 0 scroll;
    -webkit-box-shadow:  5px 0px 15px 0px rgba(0, 0, 0, 0.9);    
    box-shadow:  5px 0px 15px 0px rgba(0, 0, 0, 0.9);
    min-height:800px;
    padding-top:50px;
}

.container-receipt iframe {
    -webkit-box-shadow:  5px 5px 5px 5px rgba(0, 0, 0, 0.3);
    box-shadow:  5px 5px 5px 5px rgba(0, 0, 0, 0.3);
    min-height:100%;
    width:100%;
}

.container-sidebar {  
    padding-top:50px;
}