forked from 4GeeksAcademy/MatiasRivas-InstagramPost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (55 loc) · 884 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
46
47
48
49
50
51
52
53
54
55
56
57
58
body {
margin: 0;
padding: 0;
justify-content: center;
align-items: center;
background-color: rgb(0, 0, 0);
font-family: 'Roboto', sans-serif;
}
.post{
margin: 20% auto;
display: flex;
flex-wrap: wrap;
width: 45%;
min-width: 40%;
background-color: white;
}
.post-header{
margin: 1%;
display: flex;
justify-content: space-between;
flex-basis: 96%;
}
.post-header p{
font-size: 10px;
align-content: left;
margin-left: 1%;
}
.post-header2{
margin: 2%;
margin-left: auto;
align-content: right;
}
.post-icons {
margin: 2%;
flex-basis: 80%;
}
.post-icons i{
margin-right: 1%;
}
.post-icons2{
margin: 2%;
margin-left: auto;
align-content: right;
}
.image{
object-fit: cover;
width: 100%;
}
img{
object-fit: cover;
width: 100%;
}
.post-body p{
margin: 1%;
}