-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathinfoModal.css
More file actions
59 lines (59 loc) · 1.35 KB
/
infoModal.css
File metadata and controls
59 lines (59 loc) · 1.35 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
#vp_infoModal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1400;
background-color: rgba(0,0,0,.4);
}
.vp-infoModal-container {
position: relative;
left: 50%;
top: 50%;
transform:translate(-50%, -50%);
width: 400px;
height: 165px;
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;
}
.vp-infoModal-inner {
width: 100%;
height: 100%;
border-radius: 30px;
}
.vp-infoModal-input-button:hover {
cursor: pointer;
transition: 0.7s;
outline: 0;
}
.vp-infoModal-icon {
font-size: 26px;
color: var(--vp-font-primary);
/* LAB: img to background-image */
background-image: url(../../img/info_circle.svg);
background-repeat: no-repeat;
background-size: contain;
width: 24px;
height: 24px;
}
.vp-infoModal-titleStr {
color: var(--vp-font-primary);
font-size: 15px;
}
.vp-infoModal-style-flex-column-evenly {
display: flex;
flex-direction: column;
justify-content: space-around;
}
.vp-infoModal-style-flex-row-center {
display: flex;
flex-direction: row;
justify-content: center;
}
.vp-infoModal-style-text-center {
text-align: center;
}