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
| .image-popup{
| div{
| margin-top: 8px;
| }
|
| div.title{
| margin-top: 0;
| font-weight: bold;
| max-width: 300px;
| text-overflow: ellipsis;
| white-space: nowrap;
| overflow: hidden;
| }
|
| div.image{
| a{
| cursor: zoom-in;
| }
| &.fullscreen{
| display: flex;
| align-items: center;
| justify-content: center;
| color: white;
| i{
| font-size: 200%;
| position: absolute;
| left: 50%;
| top: 45%;
| }
| a{
| cursor: zoom-out;
| }
| img{
| max-width: 100%;
| max-height: 100%;
| }
| }
| }
| }
|
|