blob: 30d30ac61b816efeb16d2e51deff94f094d63e1f (
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
|
:host {
display: block;
width: 100vw;
height: 100vh;
top: 0px;
left: 0px;
overflow: hidden;
position: relative;
}
sfw-image {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, calc(-50% - 50px));
width: 100%;
max-width: calc(100vw - 20px);
max-height: calc(100vh - 200px);
user-select: none;
transition: transform 0.05s ease;
}
#front {
z-index: 1000;
}
#back {
z-index: 500;
filter: blur(50px);
}
#date {
margin: 10px;
border-radius: var(--border-radius);
padding: 10px;
background: #efefef99;
backdrop-filter: blur(10px);
box-shadow: #223223aa 1px 1px 4px;
}
|