blob: 7ba774e1f382f3397a4ef05f03db7aeb54f57e7a (
plain)
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
|
.img-thumbnail-1 {
padding: 0px;
// width: 100%;
background: white;
}
.comments {
list-style: none;
padding: 0;
.card {
position:relative;
.card-header:before {
position: absolute;
top: 11px;
right: 100%;
width: 0;
height: 0;
display: block;
content:" ";
border-color: transparent;
border-style: solid solid outset;
pointer-events:none;
border-right-color: #444;
border-width: 14px;
}
}
}
|