Add panels to product details view, etc.

This commit is contained in:
Lance Edgar 2015-02-27 03:07:49 -06:00
parent 86db5181b8
commit 3b9efe0ffb
5 changed files with 181 additions and 68 deletions
tailbone/static/css

View file

@ -62,3 +62,28 @@ body > #body-wrapper {
display: block;
margin: 40px auto;
}
/******************************
* Panels
******************************/
.panel {
border-bottom: 1px solid Black;
border-left: 1px solid Black;
border-right: 1px solid Black;
margin-bottom: 15px;
padding: 0px;
}
.panel h2 {
border-top: 1px solid Black;
border-bottom: 1px solid Black;
margin: 0px;
padding: 5px;
}
.panel-body {
overflow: auto;
padding: 5px;
}