1
0
Fork 0
masonry-static/app/main.css

37 lines
709 B
CSS
Raw Permalink Normal View History

2017-11-27 19:14:03 +02:00
/* jQuery UI Draggable adds ui-draggable-dragging */
.grid-item.ui-draggable-dragging,
/* Packery adds class while transitioning to drop position */
.grid-item.is-positioning-post-drag {
background: #C90;
z-index: 2; /* keep dragged item on top */
}
.packery-drop-placeholder {
outline: 3px dashed #444;
outline-offset: -6px;
/* transition position changing */
-webkit-transition: -webkit-transform 0.2s;
transition: transform 0.2s;
}
.grid-item {
float: left;
max-width: 390px;
margin: 5px;
}
.grid-item img {
max-width: 100%;
}
.grid-item:hover {
cursor: move;
}
2017-11-29 13:25:25 +02:00
.clear {
clear: both;
}
2017-12-01 13:35:47 +02:00
body {
background-color: #dedede;
}
2017-12-01 16:49:23 +02:00
body.drag {
background-color: #efedaf;
}
2017-12-05 07:25:28 +02:00
#canvase {
2017-12-01 13:35:47 +02:00
}