Skip to content

Commit

Permalink
Change scratchpad bounds to be wider
Browse files Browse the repository at this point in the history
Also tweaked the spacing a bit so it looks nicer.

Before:
{F4418}

After:
{F4419}

Auditors: alex
  • Loading branch information
sophiebits committed Aug 27, 2013
1 parent bc61129 commit e05f134
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions css/khan-exercise.css
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,24 @@ table.limit th:first-child { text-align: right; }
body.debug .graphie { outline: 1px dashed #fdd; }
.graphie svg { position: absolute; top: 0; left: 0; }

#scratchpad { padding-left: 20px; overflow: hidden; display: none; }
#scratchpad div { position: absolute; margin-top: -20px; z-index: 1; min-width: 514px; height: 98%; outline: 1px solid #ccc; }
#scratchpad {
display: none;
margin: 0 10px;
overflow: hidden;
padding-bottom: 40px;
}
#scratchpad div {
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid #ccc;
height: 100%;
position: absolute;
width: 100%;
z-index: 1;
}

#scratchpad-not-available { display: none; }
#extras .report-issue-link { float: right; font-size: 11px; }

Expand Down

0 comments on commit e05f134

Please sign in to comment.