forked from 4GeeksAcademy/Victorchinea-instagrampostlayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
72 lines (60 loc) · 1011 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
body {
font-family: Arial, sans-serif;
background-color: #fafafa;
display: flex;
justify-content: center;
margin: 0;
padding: 20px;
}
.insta-post {
width: 400px;
background-color: white;
border: 1px solid #dbdbdb;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.header {
display: flex;
align-items: center;
padding: 10px;
}
.profile-pic {
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 10px;
}
.username {
font-weight: bold;
}
.post-image {
width: 100%;
display: block;
}
.actions {
display: flex;
padding: 10px;
font-size: 24px;
}
.actions i {
margin-right: 10px;
cursor: pointer;
}
.likes, .caption, .comments {
padding: 0 10px;
margin-bottom: 10px;
}
.likes {
font-weight: bold;
}
.caption {
display: flex;
flex-direction: column;
}
.comments .comment {
margin-top: 5px;
}
.comment strong {
margin-right: 5px;
}