From 1544b3d12a3fad067317ca27e63dd7f9e29b674a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 11 Jun 2023 19:56:16 +0200 Subject: [PATCH] Continued: - whole input tag, no matter for what purpose is styled now - sorted CSS members --- templates/base.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/base.html b/templates/base.html index 8648c02..ab2c710 100644 --- a/templates/base.html +++ b/templates/base.html @@ -70,10 +70,7 @@ color: #f00000; } - input:hover { - border-color: #f00000; - } - input[type="text"], input[type="submit"] { + input { padding: 5px; border-radius: 5px; font-size: 16px; @@ -81,6 +78,9 @@ input[type="submit"] { cursor: pointer; } + input:hover { + border-color: #f00000; + } span[title] { text-decoration: underline dotted; -- 2.39.2