Created
April 27, 2020 22:05
-
-
Save Reine0017/16e927e4fbea45dea388e0c34d8b7c17 to your computer and use it in GitHub Desktop.
Simple Drawing app - sketch.css
This file contains 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
*{ | |
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