-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathalertModal.css
More file actions
87 lines (87 loc) · 1.95 KB
/
alertModal.css
File metadata and controls
87 lines (87 loc) · 1.95 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#vp_alertModal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1400;
background-color: rgba(0,0,0,.4);
}
.vp-alertModal-container {
position: relative;
left: 50%;
top: 50%;
transform:translate(-50%, -50%);
width: 400px;
height: 170px;
padding: 15px;
background-color: var(--vp-background-color);
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);
}
.vp-alertModal-inner {
width: 100%;
height: 100%;
border-radius: 30px;
}
.vp-alertModal-input-button {
top: 5px;
right: 10px;
width: 80px;
height: 24px;
font-family: Apple SD Gothic Neo;
font-style: normal;
font-weight: normal;
font-size: 13px;
line-height: 21px;
text-align: center;
color: #696969;
background: #F5F5F5;
border: 0.25px solid #C4C4C4;
box-sizing: border-box;
border-radius: 2px;
}
.vp-alertModal-input-button:hover {
cursor: pointer;
transition: 0.7s;
outline: 0;
}
.vp-alertModal-icon {
font-size: 26px;
color: #AE5700;
background-image: url(../../img/triangle-exclamation-solid.svg);
background-size: 25px;
background-repeat: no-repeat;
width: 25px;
height: 25px;
}
.vp-alertModal-titleStr {
color: #AE5700;
font-size: 13px;
font-weight: 700;
}
.vp-alertModal-detailStr {
color: var(--vp-primary-text);
background-color: var(--vp-light-gray-color);
border-radius: 5px;
padding: 10px;
border: 0.25px solid var(--vp-grid-line-color);
height: 60px;
}
.vp-alertModal-detailStr > pre {
border: 0px;
padding: 0px;
}
.vp-alertModal-style-flex-column-evenly {
display: flex;
flex-direction: column;
justify-content: space-evenly;
row-gap: 3px;
}
.vp-alertModal-style-flex-row-center {
display: flex;
flex-direction: row;
justify-content: center;
}
.vp-alertModal-style-text-center {
text-align: center;
}