forked from 4GeeksAcademy/RikrdoLeal-Instagram-photo-feed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
45 lines (45 loc) · 715 Bytes
/
style.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
body{
background: whitesmoke;
margin: 0;
}
div{
-box-sizing:border-box;
}
header{
background: white;
padding: 10px;
text-align: center;
}
header h1{
margin: 0;
font-family: sans-serif;
}
div.post{
background: white;
margin-top: 50px;
border-radius: 5%;
}
div.post img{
width: 100%;
}
div.post .post-header div:first-child{
display: inline-block;
width: 76%;
padding: 0px;
}
div.post .post-header div:last-child{
display: inline-block;
width: 20%;
text-align: right;
padding: 10px;
color: gray;
}
div.post h2, div.post p{
padding: 10px;
margin: 0%;
font-family: sans-serif;
}
div.container{
width: 600px;
margin: auto;
}