17 lines
282 B
CSS
17 lines
282 B
CSS
.pressure-box {
|
|
border: 500px /* also change js! */ solid orange;
|
|
position: fixed;
|
|
margin: auto;
|
|
z-index: 100;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.pressure-box-empty {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.pressure-box-fired {
|
|
border-color: orangered;
|
|
pointer-events: initial !important;
|
|
}
|