Skip to content

Instantly share code, notes, and snippets.

@boichee
Created September 13, 2014 10:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boichee/633f3a5cba9edfd78bb0 to your computer and use it in GitHub Desktop.
Save boichee/633f3a5cba9edfd78bb0 to your computer and use it in GitHub Desktop.
Simple console emulator for JSFiddle - CSS Pane
.console {
font-family: monospace;
margin: 2px;
}
.large {
font-size: 1.5em;
}
/* Define the prompt */
.console p.help:before {
content:"";
}
.console p:before {
content:"> ";
}
@boichee
Copy link
Author

boichee commented Sep 13, 2014

Be sure to grab the code for all 3 panes (HTML, CSS, JS) to make this work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment