journey/assets/less/main.less
2017-02-23 19:29:58 +01:00

30 lines
458 B
Plaintext

@import "./dragula";
div.container {
margin: 0 auto;
display: flex;
> div.location {
width: 100px;
height: 100px;
padding: 40px;
&.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;
}