-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlayout1.css
More file actions
39 lines (38 loc) · 813 Bytes
/
layout1.css
File metadata and controls
39 lines (38 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.grid-container{
background-color: indianred;
padding: 20px;
display: grid;
grid-template-areas:
'logo logo logo logo logo logo'
'Navigation Navigation Navigation Navigation Navigation Navigation '
'header header header header header header'
'sidebar sidebar Bodyarea Bodyarea Bodyarea Bodyarea'
'footer footer footer footer footer footer';
grid-gap: 10px;
width: 1480px;
height: 700px;
}
.grid-item{
background-color: wheat;
padding: 20px;
border: 1px solid black;
font-size: 40px;
text-align: center;
}
#grid-1{
grid-area: logo;
}
#grid-2{
grid-area: Navigation;
}
#grid-3{
grid-area: header;
}
#grid-4{
grid-area: sidebar;
}
#grid-5{
grid-area: Bodyarea;
}#grid-6{
grid-area: footer;
}