15 lines
254 B
CSS
15 lines
254 B
CSS
|
.disconnected {
|
||
|
align-items: center;
|
||
|
background-color: rgba(0, 0, 0, 0.4);
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
height: 100%;
|
||
|
justify-content: center;
|
||
|
text-align: center;
|
||
|
width: 100%;
|
||
|
p {
|
||
|
color: #cccccc;
|
||
|
font-size: 2em;
|
||
|
}
|
||
|
}
|