forked from extern/the-glorious-startpage
ae6e1254ea
* fix paddings on screen * fix test Variable Assigned to Object Injection Sink * fix parse int missing base * fix security issues(regex not included) * fix missing base * fixes padding * minor fixes * regex * cleanup * minor cleanup in webmenu * cleanups * cleanups spaces to tab * cleanups * spacing tabs fixes test * cleanup * cleanup * multitransition new line * cleanup * cleanup * cleanup * cleanup * readme * comments * cleanup * Avoid assignments in operands * cleanup
28 lines
409 B
CSS
28 lines
409 B
CSS
.centeredBar {
|
|
|
|
width: 100%;
|
|
height: auto;
|
|
|
|
border: none;
|
|
pointer-events: none;
|
|
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
#centeredBox {
|
|
opacity: 1;
|
|
z-index: 2;
|
|
transition:
|
|
opacity var(--transition-speed),
|
|
z-index var(--transition-speed);
|
|
}
|
|
|
|
.centeredBar#centeredBox.hiddenBox {
|
|
opacity: 0;
|
|
z-index: 0;
|
|
}
|