30 lines
427 B
CSS
30 lines
427 B
CSS
movable-area {
|
|
width: 100%;
|
|
height: 218px;
|
|
background-color: #fff;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
movable-view {
|
|
background-color: rgba(255, 36, 65);
|
|
color: #fff;
|
|
border-radius: 5px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 46px;
|
|
height: 46px;
|
|
}
|
|
|
|
.bigger-area {
|
|
width: 480px;
|
|
height: 280px;
|
|
}
|
|
|
|
.move-button {
|
|
margin: 20px;
|
|
height: 40px;
|
|
}
|