From 7a06a9a7b904cc85d794ed312952dc17815570ce Mon Sep 17 00:00:00 2001 From: NetMan <13informatyka14@gmail.com> Date: Thu, 11 Jan 2024 23:20:59 +0100 Subject: [PATCH] Added basic HTML buttons (not yet performing anything) --- index.html | 29 +++++++++++++++++++++++++++++ style.css | 14 ++++++++++++++ 2 files changed, 43 insertions(+) diff --git a/index.html b/index.html index 01c31e4..808d56a 100644 --- a/index.html +++ b/index.html @@ -8,5 +8,34 @@ +
+
+
+
+
7
+
8
+
9
+
/
+
+
+
4
+
5
+
6
+
+
+
+
+
1
+
2
+
3
+
-
+
+
+
0
+
.
+
=
+
*
+
+
+
\ No newline at end of file diff --git a/style.css b/style.css index e69de29..09b6289 100644 --- a/style.css +++ b/style.css @@ -0,0 +1,14 @@ +#container { + font-size: xx-large; +} +.buttons-flex { + display: flex; +} +.button { + padding: 20px; + border: 1px solid #000; + cursor: pointer; +} +.button:active { + background-color: #888; +} \ No newline at end of file