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
70 lines (65 loc) · 1.13 KB
/
Copy pathstyle.css
File metadata and controls
70 lines (65 loc) · 1.13 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;400;700;800&display=swap");
body {
font-family: "Nunito Sans", sans-serif;
background-color: white;
display: flex;
flex-direction: column;
}
* {
padding: 0;
margin: 0;
}
#main {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
}
h1 {
font-weight: 200;
background-color: #ff8c00;
font-size: 2.5em;
color: white;
display: flex;
justify-content: center;
padding: 40px 10px;
}
article {
background-color: #65754d;
height: 1000px;
width: 1300px;
border: 50px;
color: white;
padding: 40px;
margin: 10px 10px 10px 0;
}
.break {
display: block;
padding: 10px;
}
p {
font-size: 1.5em;
text-align: justify;
text-justify: inter-word;
}
nav,
aside {
font-size: 30px;
height: 1000px;
width: 450px;
border: 50px;
color: white;
padding: 40px;
background-color: #6b8e23;
margin: 10px 10px 10px 0;
}
footer {
font-weight: 200;
background-color: #ffa500;
font-size: 2em;
color: white;
display: flex;
justify-content: left;
padding: 40px 40px 60px 40px;
}