-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathmodal.css
More file actions
56 lines (55 loc) · 1.33 KB
/
modal.css
File metadata and controls
56 lines (55 loc) · 1.33 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
52
53
54
55
56
/* Modal */
#vp_multiButtonModal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1400;
background-color: rgba(0,0,0,.4);
}
#vp_multiButtonModal .vp-multi-button-modal-box {
position: relative;
left: 50%;
top: 50%;
transform:translate(-50%, -50%);
width: 400px;
height: 170px;
padding: 2rem;
background-color: var(--vp-background-color);
border-radius: 5px;
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
font-family: AppleSDGothicNeo;
font-size: 15px;
/* CHROME: prevent colab box-sizing */
box-sizing: border-box;
}
#vp_multiButtonModal * {
box-sizing: border-box;
}
#vp_multiButtonModal .vp-multi-button-modal-message {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 80px;
overflow: hidden;
}
#vp_multiButtonModal .vp-multi-button-modal-message span {
color: var(--vp-font-highlight);
}
#vp_multiButtonModal .vp-multi-button-modal-message-inner {
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
height: 80%;
}
#vp_multiButtonModal .vp-multi-button-modal-buttons {
display: flex;
align-items: center;
justify-content: space-around;
width: 100%;
height: 60px;
}