-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (46 loc) · 787 Bytes
/
style.css
File metadata and controls
47 lines (46 loc) · 787 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
41
42
43
44
45
46
47
* {
font-size: 25px;
}
header {
text-align: center;
background-color: yellow;
height: 50px;
}
nav {
background-color: yellowgreen;
text-align: center;
height: 50px;
}
.content {
display: flex;
}
main {
background-color: violet;
text-align: center;
height: 600px;
width: 1000px;
}
section {
background-color: yellow;
width: 900px;
height: 500px;
margin: auto;
margin-top: 30px;
}
article {
background-color: orange;
width: 800px;
height: 210px;
margin: auto;
margin-bottom: 20px;
}
aside {
background-color: cadetblue;
text-align: center;
width: 600px;
}
footer{
background-color: yellow;
text-align: center;
height: 60px;
}