generated from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
56 lines (46 loc) · 749 Bytes
/
styles.css
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
body{
margin: 0px;
padding: 0px;
padding-bottom: 50px;
font-family: helvetica;
background: rgb(234, 234, 234);
}
header{
background-color: white;
padding: 8px;
}
header h1{
width: 600px;
margin: auto;
}
.post {
width: 600px;
margin: auto;
margin-top: 50px;
background-color: white;
}
.post-header {
display: flex;
justify-content: space-between;
align-items: center;
padding-left: 10px;
padding-right: 10px;
}
.post-header img {
float: right;
}
.post-header p {
color: gray;
}
.post-image img {
width: 100%;
}
.post-text {
align-items: center;
padding-left: 15px;
padding-right: 15px;
display: flex;
}
.post-text p {
text-align: justify;
}