From 762cdfda900886dfa317147a7b0574ba50f347b3 Mon Sep 17 00:00:00 2001 From: Simon Berner Date: Sun, 17 Mar 2024 18:07:03 +0100 Subject: [PATCH] add: :lipstick: add some button style --- src/style.css | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/src/style.css b/src/style.css index aa74254..7cfe48d 100644 --- a/src/style.css +++ b/src/style.css @@ -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; }