From 59b53f712e0f962bdfb60f9e0b6589d7ea118218 Mon Sep 17 00:00:00 2001 From: kd Date: Fri, 30 Jan 2026 09:37:23 +0400 Subject: [PATCH] f --- app/assets/stylesheets/application.css | 39 ++++++++++++++++++++++++-- 1 file changed, 37 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 27b3642..9886237 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -1,5 +1,40 @@ .table { + display: flex; + flex-direction: column; + width: 100%; + border: 1px solid #ccc; + margin-top: 30px; +} - width: 50%; - border: 2px solid #ffff +.table-header, +.table-row { + display: flex; + padding: 10px; + border-bottom: 1px solid #ddd; +} + +.cell { + flex: 1; + padding: 6px 12px; +} + +.table-header { + background-color: blueviolet; + font-weight: bold; +} + +.btn { + background-color: darkgoldenrod; + color: white; + padding: 6px 10px; + margin-right: 5px; + border: none; + border-radius: 4px; + text-decoration: none; + font-size: 14px; + cursor: pointer; +} + +.btn:hover { + background-color: #0056b3; } \ No newline at end of file