blob: 26f875b0baefe0aa113ae45621dc91b0e1be5edb (
plain)
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
|
.modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10;
background: rgba(0,0,0,0.8);
display: flex;
justify-content: center;
align-items: center;
opacity: 0.0;
transition: opacity 1.0s;
pointer-events: none;
}
.modal.visible {
opacity: 1.0;
pointer-events: auto;
}
.modal.handheld-modal {
background: #fff;
}
.modal.handheld-modal > div {
background: transparent;
padding: 1.5rem;
}
.modal.handheld-modal p {
font-family: "Freight Text", serif;
font-size: 1.6rem;
text-align: center;
line-height: 1.1;
color: #000;
}
.modal.handheld-modal .ok {
position: absolute;
bottom: 0;
right: 0;
width: 100%;
height: 3rem;
padding-right: 1rem;
font-family: "Neue Haas Unica", sans-serif;
font-size: 18px;
text-align: right;
color: #000;
cursor: pointer;
}
|