-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
92 lines (72 loc) · 1.24 KB
/
Copy pathindex.css
File metadata and controls
92 lines (72 loc) · 1.24 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
html, body {
margin: 0 auto;
padding: 0;
font-family: "Source Sans 3", sans-serif;
max-width: 375px;
background-color: #ededed;
}
header {
background-color: white;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid #c6c6c6;
padding: 16px 8px;
}
.post-div {
margin-bottom: 28px;
}
.logo {
width: 128px;
}
.avatar {
width: 35px;
border-radius: 50%;
}
.post-header {
background-color: white;
display: flex;
align-items: center;
padding: 10px;
}
.wordDiv {
margin-left: 7px;
padding-top: 1px;
}
.wordDiv p {
margin: 0;
font-size: 12px;
line-height: 1.1;
}
.bold-text {
font-weight: 700;
}
.post-img {
width: 375px;
}
.post-body {
background-color: white;
padding: 21px 10px 6px 10px;
}
.btn-icon {
width: 23px;
height: 23px;
margin-right: 10px;
}
.heart-icon {
display: inline-block;
background-image: url(images/icon-heart.png);
background-size: cover;
}
.heart-icon:hover {
background-image: url(images/icon-heart-filled.png);
}
.icon:hover, .btn-icon:focus {
opacity: 0.5;
}
.post-body p {
margin: 12px 0;
}
.postDivider {
background-color: #ededed;
}