blob: 04e1d5d78ed1ea142e3efa9e895d31171b03c024 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#selection {
z-index: 99999999999999;
transition: 0.15s ease-in-out;
transition-property:
opacity, border-radius,
transform, width, height, top, left;
position: fixed;
pointer-events: none;
transform: scale(1.0);
background: rgba(255, 255, 255, 0.3);
border-radius: calc(var(--padding) / 2);
}
#selection.keyboard-selecting,
#selection.controller-selecting {
transform: scale(1.1);
}
|