-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPost.css
More file actions
46 lines (38 loc) · 738 Bytes
/
Copy pathPost.css
File metadata and controls
46 lines (38 loc) · 738 Bytes
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
.post {
display: flex;
align-items: flex-start;
border-bottom: 1px solid var(--twitter-background);
padding-bottom: 10px;
}
.post__body {
flex: 1;
padding: 10px;
}
.post__body > img {
border-radius: 20px;
}
.post__footer {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.post__headerDescription {
margin-bottom: 10px;
font-size: 15px;
}
.post__headerText > h3 {
font-size: 15px;
margin-bottom: 5px;
}
.post__badge {
font-size: 14px !important;
color: var(--twitter-color);
}
.post__headerSpecial {
font-weight: 600;
font-size: 12px;
color: gray;
}
.post__avatar {
padding: 20px;
}