53 lines
785 B
SCSS
53 lines
785 B
SCSS
@import './dragula';
|
|
|
|
div.container {
|
|
width: 100%;
|
|
flex-wrap: wrap;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
> div.location {
|
|
width: 100px;
|
|
height: 100px;
|
|
padding: 10px;
|
|
&.over {
|
|
> .item {
|
|
transform: scale(1.3);
|
|
background: blue;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
div.item {
|
|
transition: all 0.2s;
|
|
width: 100px !important;
|
|
height: 100px !important;
|
|
background: red;
|
|
border-radius: 300px;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#results {
|
|
> ul {
|
|
> li {
|
|
padding: 5px 0;
|
|
cursor: pointer;
|
|
&:hover {
|
|
background: #ddd;
|
|
}
|
|
> ul {
|
|
display: none;
|
|
}
|
|
&.expand {
|
|
> ul {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|