define width for column

This commit is contained in:
Late Night Defender 2023-08-03 00:57:42 +07:00
parent 8f665f0bf1
commit a8cddeaf95

View file

@ -65,27 +65,26 @@ body {
.grid-container { .grid-container {
display: grid; display: grid;
justify-content: center;
grid-template-areas: grid-template-areas:
'header header header header header' 'left middle right'
'left middle middle middle right'
'footer footer footer footer footer';
} }
.left { .left {
grid-area: left; grid-area: left;
} }
/* Style the middle column */
.middle { .middle {
grid-area: middle; grid-area: middle;
width: 15cm;
} }
/* Style the right column */
.right { .right {
grid-area: right; grid-area: right;
} }
/* Invidious */
.list { .list {
border-radius: 12px 12px 12px 12px; border-radius: 12px 12px 12px 12px;
background-color: rgba(255, 255, 255, 1); background-color: rgba(255, 255, 255, 1);