the-glorious-startpage/css/centered-box.css

14 lines
251 B
CSS
Raw Normal View History

2020-06-04 03:00:27 +02:00
.centeredBar {
2020-06-04 03:03:54 +02:00
background: #ff00ff60;
2020-06-04 03:00:27 +02:00
width: 100%;
height: auto;
2020-06-04 03:03:54 +02:00
2020-06-04 03:00:27 +02:00
border: none;
pointer-events: none;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}