mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
24 lines
481 B
CSS
24 lines
481 B
CSS
.card-drag-overlay {
|
|
width: 146px;
|
|
height: 204px;
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
opacity: 0.85;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.card-drag-overlay__image {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
display: block;
|
|
}
|
|
|
|
.card-drag-overlay__back {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(135deg, #2a1f3d 0%, #1a1028 60%, #0d0617 100%);
|
|
border: 1px solid #3a2d50;
|
|
box-sizing: border-box;
|
|
}
|