Created
June 17, 2012 23:28
-
-
Save jaycfields/2946045 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#console { | |
height: 820px; | |
background: #eee; | |
margin: 10px; | |
border-radius: 5px; | |
-moz-border-radius: 5px; | |
border: 1px solid #aaa; | |
} | |
#console div.jquery-console-inner { | |
height: 800px; | |
margin: 10px 10px; | |
overflow: auto; | |
text-align: left; | |
} | |
#console div.jquery-console-welcome { | |
color: #ef0505; | |
font-family: sans-serif; | |
font-weight: bold; | |
padding: 0.1em; | |
} | |
#console div.jquery-console-message-value { | |
color: #0066FF; | |
font-family: monospace; | |
padding: 0.1em; | |
} | |
#console div.jquery-console-prompt-box { | |
color: #444; | |
font-family: monospace; | |
} | |
#console div.jquery-console-focus span.jquery-console-cursor { | |
background: #333; | |
color: #eee; | |
font-weight: bold; | |
} | |
#console div.jquery-console-message-error { | |
color: #ef0505; | |
font-family: sans-serif; | |
font-weight: bold; | |
padding: 0.1em; | |
} | |
#console div.jquery-console-message-success { | |
color: #187718; | |
font-family: monospace; | |
padding: 0.1em; | |
} | |
#console span.jquery-console-prompt-label { | |
font-weight: bold; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment