blob: ffb53858e6db34bb5bfd8e99599928fdf97baa76 (
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
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
|
.scr-room {
width: 780px;
height: 780px;
margin: 8px auto 0;
background: #0a0a0a url('/static/images/core/backgrounds/screenshot.gif') no-repeat center top;
background-size: 780px 780px;
position: relative;
image-rendering: pixelated;
}
.scr-monitor {
position: absolute;
left: 122px;
top: 161px;
width: 408px;
height: 317px;
overflow: hidden;
cursor: zoom-in;
background: #000;
}
.scr-img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
image-rendering: auto;
}
.scr-noise {
position: absolute;
inset: 0;
display: none;
align-items: center;
justify-content: center;
color: #f0e6d2;
font-family: 'Mali', sans-serif;
font-style: italic;
letter-spacing: 4px;
text-transform: uppercase;
font-size: 16px;
background: #000;
}
.scr-hint {
width: 780px;
margin: 12px auto 24px;
text-align: center;
color: #f0e6d2;
font-family: 'Mali', sans-serif;
font-size: 13px;
letter-spacing: 2px;
}
.scr-zoom {
position: fixed;
inset: 0;
background: rgba(8, 4, 18, 0.95);
z-index: 1000;
display: none;
align-items: center;
justify-content: center;
cursor: zoom-out;
backdrop-filter: blur(6px);
}
.scr-zoom.is-open {
display: flex;
}
.scr-zoom-img {
max-width: 94vw;
max-height: 92vh;
object-fit: contain;
box-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
}
|