From 7534ebc226b9e750413f30ea434120be9c263197 Mon Sep 17 00:00:00 2001 From: Jan BELLON Date: Thu, 7 Mar 2024 15:02:37 +0000 Subject: [PATCH] Update file style.css --- html/src/css/style.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/html/src/css/style.css b/html/src/css/style.css index 31aa2b94..ddd49dcc 100644 --- a/html/src/css/style.css +++ b/html/src/css/style.css @@ -37,6 +37,27 @@ header, footer { justify-content: space-between; } +input { + background-color: var(--background); + color: var(--text); + padding: 0.4em 1em; + border: 0; + border-bottom: 1px solid var(--text); + margin: 15px 0; + font-size: 1.5em; +} + +input[type='submit'], button { + background-color: var(--darker-background); + color: var(--text); + border: 0; + border-radius: 10px; +} + +input[type='submit']:hover, button:hover { + box-shadow: 0 0 15px rgba(255, 255, 255, 0.322); +} + .navitem { padding: 0.5em; background-color: var(--darker-background);