-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposts.css
More file actions
92 lines (73 loc) · 1.17 KB
/
posts.css
File metadata and controls
92 lines (73 loc) · 1.17 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
.space{
padding:10rem;
}
.posts-wrapper{
padding: 4rem 2rem;
}
.search-bar-wraper{
text-align: end;
margin-left:auto;
margin-right:2rem;
max-width: 25rem;
background-color: rgb(255, 255, 255);
padding:0;
border-radius: 50px;
margin-bottom: 6rem;
}
.search-bar{
padding: 0.7vw;
width: 20rem;
border-radius: 50px;
border: none;
font-size: 1rem;
outline:none;
font-family: "Merriweather";
}
.show{
opacity: 1;
}
.fa.fa-search{
margin:0.5rem 0;
color: #848484;
}
@media (max-width:870px){
.post-wrapper{
padding:10rem;
}
}
.post-body-wrapper{
display: flex;
align-items: center;
flex-direction: column;
}
.post-img-warpper{
height:100vh;
width:50vw;
/* width: 100%; */
}
.post-img-warpper > img{
height:100%;
width:100%;
border-radius: 50px;
}
.post-title{
/* width:100%; */
text-align: center;
}
.header-divider{
/* width:100%; */
}
.post-body{
width:60%;
max-width: 740px;
}
.date-section{
display: grid;
grid-template-columns: 1fr 2fr ;
}
.comment-section{
width: 100%;
}
.reply-btn{
margin-left:auto;
}