Skip to content

Commit

Permalink
add: 💄 add some button style
Browse files Browse the repository at this point in the history
  • Loading branch information
simonberner committed Mar 17, 2024
1 parent 4c02d56 commit 762cdfd
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions src/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
html, body {
margin: 1px;
padding: 1px;
margin: 1px;
padding: 1px;
}

canvas {
display: block;
display: block;
}

button {
background-color: darkseagreen;
border: 2px solid #0099CC; /* Border thickness, line style, and color */
border-radius: 70px; /* Adds curve to border corners */
text-decoration: none;
border: none;
color: black;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}

0 comments on commit 762cdfd

Please sign in to comment.