From 8f79831a282794db32c8fa824ff183eaa1ad9b04 Mon Sep 17 00:00:00 2001 From: Bryan Date: Fri, 30 Jan 2026 10:25:25 +0400 Subject: [PATCH] css --- app/assets/stylesheets/application.css | 32 ++++++++++++++++---------- 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 9886237..a2dc3af 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -1,40 +1,48 @@ .table { + text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); display: flex; flex-direction: column; width: 100%; - border: 1px solid #ccc; + border: 1px solid #e0e0e0; + border-radius: 6px; margin-top: 30px; + background-color: #fafafa; } .table-header, .table-row { display: flex; - padding: 10px; - border-bottom: 1px solid #ddd; + padding: 12px; + border-bottom: 1px solid #eaeaea; } .cell { + display: flex; flex: 1; - padding: 6px 12px; + padding: 8px 12px; } .table-header { - background-color: blueviolet; - font-weight: bold; + background-color: #f5f7fa; + font-weight: 600; + color: #a51010; } .btn { - background-color: darkgoldenrod; - color: white; - padding: 6px 10px; - margin-right: 5px; + text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); + display: inline-block; + background-color: #b7e1ff; + color: #0f0f0f; + padding: 1px 10px; + margin-right: 8px; border: none; - border-radius: 4px; + border-radius: 6px; text-decoration: none; font-size: 14px; cursor: pointer; + transition: background-color 0.3s ease; } .btn:hover { - background-color: #0056b3; + background-color: #f6fafe; } \ No newline at end of file