From a8cddeaf95c574a51a716e0346cb9e68121f41d4 Mon Sep 17 00:00:00 2001 From: VRSasha Date: Thu, 3 Aug 2023 00:57:42 +0700 Subject: [PATCH] define width for column --- style.css | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/style.css b/style.css index 0052983..569e3cf 100644 --- a/style.css +++ b/style.css @@ -65,27 +65,26 @@ body { .grid-container { display: grid; + justify-content: center; grid-template-areas: - 'header header header header header' - 'left middle middle middle right' - 'footer footer footer footer footer'; + 'left middle right' + } .left { grid-area: left; } -/* Style the middle column */ .middle { grid-area: middle; + width: 15cm; + } -/* Style the right column */ .right { grid-area: right; } -/* Invidious */ .list { border-radius: 12px 12px 12px 12px; background-color: rgba(255, 255, 255, 1);