Skip to content

Instantly share code, notes, and snippets.

@victorferraz
Created August 18, 2013 16:44
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save victorferraz/6262633 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0-wip/css/bootstrap.min.css">
<style>
.button {
padding: 10px;
}
.header {
margin-bottom: 10px;
}
.sidebar {
min-height: 200px;
}
.style{
border: solid 1px #ccc;
background: #ccc;
border-radius: 10px;
box-shadow: rgba(0, 0, 0, .5) 2px 2px 5px;
}
</style>
<body>
<div class="container">
<div class="header col-xs-12 style"><h1>HEADER</h1></div>
<div class="col-xs-9 style">
content
</div>
<div class="col-xs-3 style" id="sidebar">
<h2>SIDEBAR</h2>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment