Files
calculatorEstateSolution/src/components/DraggableGallery/DraggableGallery.css
T
VyacheslavShtyrlin 4c65362cce added DraggableGallery
2023-02-13 23:18:11 +05:00

81 lines
1.2 KiB
CSS

.legend-layout {
margin-top: 50px;
width: 1408px;
height: 586px;
color: #f7f7f7;
background: #17191d;
border-radius: 8px;
display: flex;
flex-direction: row;
}
.legend-container {
width: 216px;
display: flex;
flex-direction: column;
padding: 48px 0 100px 48px;
justify-content: space-between;
}
.legend-caption {
margin: 0;
font-style: normal;
font-weight: 400;
font-size: 24px;
line-height: 135%;
}
.legend {
display: flex;
flex-direction: column;
font-style: normal;
font-weight: 400;
font-size: 15px;
line-height: 145%;
/* identical to box height, or 22px */
font-feature-settings: "tnum" on, "lnum" on;
}
.legend-item {
height: 46px;
padding: 12px 32px;
box-sizing: border-box;
border-radius: 2px 0px 0px 2px;
}
.legend-item:nth-child(odd) {
background: #22252a;
}
.gallery {
display: flex;
width: fit-content;
overflow-x: scroll;
height: 96%;
box-shadow: inset 4px 3px 6px rgba(0, 0, 0, 0.15);
}
.gallery::-webkit-scrollbar-track {
background: #22252a;
border-radius: 1px;
cursor: pointer;
}
.gallery::-webkit-scrollbar {
cursor: pointer;
height: 4px;
}
.gallery::-webkit-scrollbar-thumb {
cursor: pointer;
background: #454a54;
border-radius: 8px;
height: 4px;
}