You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tty-share/frontend/tty-receiver/main.css

41 lines
709 B
CSS

html, body {
width: 100%;
height: 100%;
margin: 0;
}
#terminal {
position: fixed;
top: 0;
width: 100%;
height: 100%;
}
#center-notification {
position: absolute;
left: 50%;
top: 50%;
background-color: white;
border-radius: 10px;
border: 2ppx;
width: 300px;
height: 150px;
text-align: center;
transform: translate(-50%, -50%);
visibility: visible;
opacity: 0.8;
z-index: 10; /* */
display:flex;
align-items: center; /* Vertical center alignment */
justify-content: center; /* Horizontal center alignment */
visibility: hidden;
}
#center-notification > span {
font-size: 28px;
color: darkslategray;
}