26 lines
483 B
CSS
26 lines
483 B
CSS
.divCard{
|
|
position: absolute;
|
|
background-color: rgb(255,255,0);
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.5);
|
|
min-width: 150px;
|
|
min-height: 200px;
|
|
padding: 5px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.divCard .divTitle{
|
|
font-weight: bold;
|
|
text-align: center;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.divCard .divOverlay{
|
|
opacity: 0;
|
|
background-color: rgb(255,255,0);
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|