Skip to content

Instantly share code, notes, and snippets.

@martian17
Last active January 8, 2020 06:01
Show Gist options
  • Save martian17/002f73a5fcd6dea62aa271e555bbb433 to your computer and use it in GitHub Desktop.
Save martian17/002f73a5fcd6dea62aa271e555bbb433 to your computer and use it in GitHub Desktop.
modified so it won't break when page is resized
body {
background-color: #000000;
color: #e0e0e0;
font-family: "Lucida Console", "Lucida Sans Typewriter", monaco, "Bitstream Vera Sans Mono"}
h1 {
font-size: 15px;
color: #c9c9c9;
font-family: "Lucida Console", "Lucida Sans Typewriter", monaco, "Bitstream Vera Sans Mono";
margin-left: 15px;
}
div {
background-color: #0d0d0d;
border: 1px solid #ccc;
margin: 5px 5px 5px 5px;/* top right bottom left*/
box-sizing:border-box;
width: calc(100% - 10px);
float:left;
}
#leftDiv{
width:calc(70% - 10px)!important;
}
#rightDiv{
width:calc(30% - 10px)!important;
}
canvas {
width:100%;
display: block;
box-sizing:border-box;
}
p {
color: #e0e0e0;
margin-left: 15px;
font-size: 12px;
}
input {
background-color: #0d0d0d;
border-color: #e0e0e0;
border-style: solid;
border-width: 1px;
margin-left: 15px;
font-family: "Lucida Console", "Lucida Sans Typewriter", monaco, "Bitstream Vera Sans Mono";
font-size: 12px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment