Skip to content

Instantly share code, notes, and snippets.

@Reine0017
Created April 27, 2020 22:05
Show Gist options
  • Save Reine0017/16e927e4fbea45dea388e0c34d8b7c17 to your computer and use it in GitHub Desktop.
Save Reine0017/16e927e4fbea45dea388e0c34d8b7c17 to your computer and use it in GitHub Desktop.
Simple Drawing app - sketch.css
*{
margin:0;
padding:0;
box-sizing: border-box;
}
#drawingComp {
display:flex;
align-items:center;
}
#canvas {
border: 1px solid black;
}
#clear {
display: inline-block;
width: 30px;
height: 30px;
margin: auto;
border: 1px solid black;
font-size: 20px;
color: white;
background-color: #e3242b;
}
#clearLabel {
margin:30px;
}
.controls{
display:inline-grid;
border: 1px solid black;
margin: 30px;
}
#blackColour {
display: inline-block;
width: 30px;
height: 30px;
margin: auto;
border: 1px solid black;
font-size: 20px;
color: white;
background-color: black;
}
#blackColourLabel {
margin:30px;
}
#whiteColour {
display: inline-block;
width: 30px;
height: 30px;
margin: auto;
border: 1px solid black;
font-size: 20px;
color: black;
background-color: white;
}
#whiteColourLabel {
margin:30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment