pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame^] | 1 | .container { |
2 | position: fixed; | ||||
3 | top: 42px; | ||||
4 | height: calc(100vh - 42px); | ||||
5 | width: 100%; | ||||
6 | border-radius: 25px; | ||||
7 | box-shadow: 0 0 0 100px black; | ||||
8 | pointer-events: none; | ||||
9 | background: transparent; | ||||
10 | } | ||||
11 | |||||
12 | .container::-webkit-scrollbar { | ||||
13 | display: none; | ||||
14 | } | ||||
15 | |||||
16 | .container, .container * { | ||||
17 | transform: rotateY(0); | ||||
18 | -webkit-transform: rotateY(0); | ||||
19 | } |