-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrid.css
More file actions
46 lines (45 loc) · 694 Bytes
/
Copy pathgrid.css
File metadata and controls
46 lines (45 loc) · 694 Bytes
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
.grid {
position: relative;
opacity: 0;
transition: opacity 0.8s linear 1s;
}
.images-loaded .grid {
opacity: 1;
}
.item {
position: absolute;
margin: 5px;
z-index: 1;
}
.item.muuri-item-hidden {
z-index: 0;
}
.item.muuri-item-releasing {
z-index: 2;
}
.item.muuri-item-dragging {
z-index: 3;
}
.item-content {
position: relative;
cursor: pointer;
}
.item-content > img {
display: block;
border-radius: 6px;
}
.loading {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
text-transform: uppercase;
transition: opacity 0.6s linear 0.4s;
}
.images-loaded .loading {
opacity: 0;
}