Skip to content

Commit

Permalink
pimped is now a resizeable box
Browse files Browse the repository at this point in the history
  • Loading branch information
leobalter committed Oct 26, 2011
1 parent b367bef commit 6f68e22
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Ter 25 Out 2011 15:24:02 BRST
* Date: Qua 26 Out 2011 17:24:59 BRST
*/
/* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
Expand Down Expand Up @@ -1737,7 +1737,10 @@ body {
}
#pimped div.well {
background: #deffed;
height: 208px;
min-height: 80px;
height: 80px;
overflow: auto;
resize: vertical;
}
#code {
width: 678px;
Expand Down
2 changes: 1 addition & 1 deletion css/style.min.css
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ body{padding-top:60px;}
.CodeMirror{margin-bottom:20px;margin-left:0;width:698px;float:left;}
#pimpit{margin-left:0;margin-bottom:20px;}
#pimped{display:none;margin-left:0;}#pimped iframe{border:medium none;width:100%;height:100%;}
#pimped div.well{background:#deffed;height:208px;}
#pimped div.well{background:#deffed;min-height:80px;height:80px;overflow:auto;resize:vertical;}
#code{width:678px;background:#000;height:300px;float:left;margin-bottom:20px;}
footer p{color:#bada55;}
.CodeMirror{line-height:1em;font-family:monospace;}
Expand Down
5 changes: 4 additions & 1 deletion less/my.less
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ body {

div.well {
background: #deffed;
height: 208px;
min-height: 80px;
height: 80px;
overflow: auto;
resize: vertical;
}
}

Expand Down

0 comments on commit 6f68e22

Please sign in to comment.