-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontent-custom-area.css
More file actions
49 lines (45 loc) · 897 Bytes
/
content-custom-area.css
File metadata and controls
49 lines (45 loc) · 897 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
47
48
49
.disable-scrolling {
height: 100%;
overflow: hidden;
}
#snapper-overlay {
background-color: black;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
opacity: 0.5;
pointer-events: none;
}
#snapper-canvas {
cursor: crosshair;
z-index: 9950;
position: fixed;
top: 0;
left: 0;
}
#snapper-close-button {
display: flex;
align-items: center;
justify-content: center;
align-content: center;
width: 60px;
height: 60px;
position: fixed;
top: 30px;
right: 30px;
font-size: 50px;
color: white;
background-color: transparent;
background-repeat: no-repeat;
border: none;
overflow: hidden;
outline: none;
cursor: pointer;
z-index: 10001;
border-radius: 10px;
transition: background-color 0.25s;
}
#snapper-close-button:hover {
background-color: rgba(36, 36, 36, 0.5);
}