34 lines
408 B
CSS
34 lines
408 B
CSS
#detailScreenFiller {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 2;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#screenDim {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: black;
|
|
opacity: 0.0;
|
|
}
|
|
|
|
|
|
#globalDetail {
|
|
background-color: white;
|
|
width: 624px;
|
|
height: 500px;
|
|
}
|
|
|
|
.fake-selected [hero] {
|
|
visibility: hidden;
|
|
}
|