JSFiddle - React, Tailwind, and code Playground

by Sebastian Brosch

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<div class="container-fluid custom-box">
    <div class="row">
        <div class="col-lg-1 line">
            <div class="hr"></div>
        </div>
        <div class="col-lg-10 content">
            <h1>The three big ideas we hope you take away</h1>
        </div>
    </div>
</div>

CSS

.custom-box {
    background-color:#00577b;
    padding:30px 0;
    width:700px;
}
.custom-box .line {
    border-right:1px solid #fff;
    display:table-cell;
    padding:0;
    vertical-align:middle;
}
.custom-box .content {
    display:table-cell;
    padding:10px 40px;
    vertical-align:middle;
}
.custom-box .content h1 {
    color:#fff;
    margin:0;
    padding:0;
}
.hr {
    border-top:1px solid #fff;
    height:1px;
    width:75px;
}