-
Notifications
You must be signed in to change notification settings - Fork 0
/
singlepost.css
57 lines (55 loc) · 934 Bytes
/
singlepost.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
.singlepost {
}
.singlePostWrapper {
padding: 20px;
padding-right: 0;
}
.singlePostImg {
width: 100%;
height: 300px;
border-radius: 5px;
object-fit: cover;
}
singlePostTitle {
text-align: center;
margin: 10px;
font-family: "Varela", sans-serif;
font-size: 28px;
font-weight: 100;
color: rgb(80, 79, 79);
}
.singlePostEdit {
float: right;
font-size: 16px;
}
#editButton {
margin-left: 10px;
cursor: pointer;
}
#trashButton {
margin-left: 10px;
cursor: pointer;
margin-right: 20px;
}
.singlePostInfo {
margin-bottom: 20px;
display: flex;
justify-content: space-between;
font-size: 16px;
color: gray;
font-family: "Varela", sans-serif;
}
.singlePostDescription {
color: #666;
font-size: 18px;
line-height: 25px;
margin-right: 30px;
}
.singlePostDescription::first-letter {
margin-left: 20px;
font-size: 30px;
font-weight: 500;
}
.singlePostDate {
margin-right: 20px;
}