-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPost.css
52 lines (52 loc) · 904 Bytes
/
Post.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
.post{
background-color: white;
max-width: 500px;
border: 1px solid lightgrey;
margin-bottom: 45px;
}
.post__image{
width: 100%;
object-fit: contain;
border-top: 1px solid lightgrey;
border-bottom: 1px solid lightgrey;
}
.post__text{
font-weight: normal;
padding: 20px;
}
.post__header{
display: flex;
align-items: centre;
padding: 20px;
}
.post__avatar{
margin-right: 10px;
}
.post__username{
font-weight: normal;
vertical-align: bottom;
}
.post__commentBox{
display: flex;
margin: none;
}
.post__comment{
padding: 20px;
}
.post__input{
flex: 1;
border: none;
padding: 10px;
border-top: 1px solid lightgray;
}
.post__button{
flex: 0;
border: none;
color: #6082a3;
background-color: transparent;
border-top: 1px solid lightgray;
}
.post__comments{
padding-top: 10px;
padding: 20px;
}