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
48 lines (44 loc) · 786 Bytes
/
style.css
File metadata and controls
48 lines (44 loc) · 786 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
48
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,400;1,400&display=swap');
*{
margin: 0;
padding: 0;
}
body{
font-family: 'Nunito Sans', sans-serif;
color: white;
}
.header{
height: 100px;
width: 100%;
background-color: #ffa500;
display: flex;
align-items: center;
justify-content: space-around;
margin-bottom: 8px;
}
#main{
display: flex;
flex-direction: row;
justify-content: space-around;
width: 100%;
margin-bottom: 8px;
}
.nav, .aside{
width: 1500px;
height: 400px;
background-color: #666633;
padding: 20px 10px;
}
.article{
background-color: #999966;
margin:0 10px;
display: flex;
flex-direction: column;
padding: 20px 10px;
}
.footer{
background-color: #ffa500;
width: 100%;
height: 60px;
padding: 10px 5px;
}