From 4b4af9c49de6928403dafff506d6ec809776be7b Mon Sep 17 00:00:00 2001 From: runas24 <166917824+runas24@users.noreply.github.com> Date: Fri, 19 Apr 2024 13:16:51 +0500 Subject: [PATCH] Update styles.css --- styles.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/styles.css b/styles.css index b039027..f44faf1 100644 --- a/styles.css +++ b/styles.css @@ -108,3 +108,24 @@ button[type="submit"]:hover { #loadingText { margin-top: 10px; } + +/* Добавим стили для навигационной панели */ +.navigation { + margin-top: 20px; +} + +.navigation a { + display: inline-block; + padding: 10px 20px; + margin: 0 10px; + background-color: #ffcc00; + color: #000; + text-decoration: none; + border-radius: 5px; + transition: background-color 0.3s; +} + +.navigation a:hover { + background-color: #ffdb4d; +} +