blob: 719f98c63e8dac864dfe93e811599b9caba277ab (
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
|
/* drag-and-drop */
.dragCurtain {
display: none;
pointer-events: none;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 1;
}
.dragCurtain div {
color: #11f;
background: white;
border: 2px solid #11f;
padding: 2rem;
font-size: 1.5rem;
font-weight: bold;
}
.dragging .dragCurtain {
display: flex;
}
|