forked from prograd-org/lab-html-css-flex-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (35 loc) · 665 Bytes
/
Copy pathstyle.css
File metadata and controls
40 lines (35 loc) · 665 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
40
header {
display: flex;
justify-content: center;
align-items: center;
background-color: brown;
margin-bottom: 15px;
}
#main {
display: flex;
justify-content: flex-start;
align-items: center;
}
div nav {
background-color: chartreuse;
align-items: stretch;
padding: 90px 70px;
margin-right: 10px;
}
div aside {
background-color: coral;
padding: 90px 70px;
margin-left: 10px;
}
div article {
background-color: darkgreen;
text-align: center;
}
footer {
display: flex;
justify-content: center;
align-items: center;
background-color: blue;
padding: 40px;
margin-top: 10px;
}