From d665bdbf5e522a286708f495b1d6da2d7c768306 Mon Sep 17 00:00:00 2001 From: Klagarge Date: Fri, 5 Apr 2024 15:28:35 +0200 Subject: [PATCH] add CSS --- calc.html | 4 +--- styles.css | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 styles.css diff --git a/calc.html b/calc.html index 2579eae..27a2936 100644 --- a/calc.html +++ b/calc.html @@ -2,9 +2,7 @@ HTML / CSS - +
diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..db07925 --- /dev/null +++ b/styles.css @@ -0,0 +1,15 @@ +body { + background-color: lightgreen; +} + +input[type="number"] { + background-color: yellow; +} + +input[type="submit"] { + background-color: deepskyblue; +} + +input[type="reset"] { + background-color: palevioletred; +} \ No newline at end of file