-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathModal.css
More file actions
51 lines (47 loc) · 1 KB
/
Modal.css
File metadata and controls
51 lines (47 loc) · 1 KB
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
50
51
.mmgisModal {
overflow: auto;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
z-index: 9998;
opacity: 0;
}
#mmgisModalClose {
position: absolute;
top: 0;
right: 0;
color: #ddd;
cursor: pointer;
padding: 16px;
transition: color 0.2s ease;
background: var(--color-k);
border-bottom-left-radius: 100%;
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 1);
}
#mmgisModalClose i {
position: relative;
top: -5px;
right: -5px;
}
#mmgisModalClose:hover {
color: var(--color-c);
}
#mmgisModalInner {
transform: translateX(-50%) translateY(-50%);
position: absolute;
left: 50%;
top: 50%;
}
.mmgisModal .dropdown {
background-color: #2c2f30;
border: none;
margin: 1px 0px;
width: 120px;
height: 28px;
font-size: 14px;
color: var(--color-f);
padding: 0px 2px;
}