File size: 918 Bytes
e636070 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
.scenes-container {
display: flex;
flex-direction: column;
gap: 15px;
padding: 15px;
}
.scenes-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.scenes-header h3 {
color: #5f3737;
margin: 0;
}
.clear-selection-btn {
padding: 5px 10px;
background-color: #5f3737;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 0.9em;
}
.clear-selection-btn:hover {
background-color: #7a4747;
}
.scene-buttons {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.scene-btn {
padding: 8px 15px;
background-color: #fdf5ee;
border: 1px solid #5f3737;
border-radius: 4px;
color: #5f3737;
cursor: pointer;
transition: all 0.2s;
}
.scene-btn:hover {
background-color: #5f3737;
color: white;
}
.scene-btn.active {
background-color: #5f3737;
color: white;
}
|