-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostslist.css
98 lines (71 loc) · 1.41 KB
/
postslist.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
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
body{
background-color: #ffeedd;
}
.container{
padding-top: 4px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.card-new{
border-radius: 25px;
height: 150px;
display: flex;
flex-direction: row;
border-radius: 30px;
margin: 10px;
width: 500px;
transition: box-shadow .3s;
}
.card-new:hover {
box-shadow: 0 0 5px 5px rgba(33,33,33,.2);
}
.side-square-wrapper{
height: 150px;
width: 17%;
text-align: center;
background-color: white;
padding: 40px 4px;
font-size: 16px;
font-weight: bold;
color:gray;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
}
.custom-card-body{
height: 150px;
background-color: #DCDCDC;
width: 83%;
padding: 5px;
font-size: 14px;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
}
.card-body-heading{
color:gray;
font-size: 16px;
font-weight: 500;
display: flex;
flex-direction: row;
justify-content: space-between;
padding-bottom: 5px
}
.post-text{
overflow: hidden;
white-space: normal;
height: 4.8em;
text-overflow: -o-ellipsis-lastline;
}
.trash-button{
float: right;
padding-right: 10px;
size: 10px;
cursor: pointer;
}
.ellipsis{
margin-left: 370px;
color: grey;
cursor: pointer;
padding-right: 120px;
margin-bottom: 4px;
}