blob: 9f1238e203ec2fcc4dd5b259de78999d29b944f9 (
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
|
.viewer-parent {
position: fixed;
width: 100vw;
height: 100vh;
top: 0; left: 0;
}
.viewer {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
background: #fff;
color: #000;
font-family: "Neue Haas Unica", sans-serif;
}
.viewer.loading {
display: flex;
justify-content: center;
align-items: center;
}
.close {
position: absolute;
top: 2rem; right: 2rem;
width: 1.375rem;
height: 1.375rem;
background-image: url('/static/img/close_black.svg');
background-color: rgba(255,255,255,1.0);
background-size: 1.375rem 1.375rem;
background-position: center center;
background-repeat: no-repeat;
cursor: pointer;
}
|