Skip to content

Commit

Permalink
n
Browse files Browse the repository at this point in the history
  • Loading branch information
MDASHRAFUDDINTANVIR1 committed Mar 5, 2024
1 parent 642d69e commit e2195d3
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions grid.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,28 +41,33 @@
;

}

.header-part, .main-part, .sidebar-portion, .footer-part {
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.header-part {
background-color: lightcoral;
padding: 20px;

border-radius: 5px;
grid-area: header-part;

}
.main-part{
background-color: lightblue;
padding: 20px;

border-radius: 5px;
grid-area: main-part;
}
.sidebar-portion {
background-color: lightgreen;
padding: 20px;
border-radius: 5px;
grid-area: sidebar-portion;
}
.footer-part {
background-color: lightseagreen;
padding: 20px;
border-radius: 5px;
grid-area: footer-part;
}
Expand Down

0 comments on commit e2195d3

Please sign in to comment.