ITRadio/client/src/assets/css/module/team.scss

80 lines
1.2 KiB
SCSS

.team {
margin-left: auto;
max-width: calc(100vw - ((100vw - var(--container)) / 2));
margin-bottom: var(--space-between-sections);
position: relative;
z-index: 2;
&__header {
display: flex;
}
&__title {
margin-right: auto;
}
&__slider {
&:hover {
cursor: url("./assets/img/icon/cursorDragAndDrop.svg"), auto;
}
.swiper-wrapper {
}
}
&__item {
}
&__tools {
margin-top: 65px;
display: flex;
justify-content: space-between;
max-width: var(--container);
}
&__progress {
width: 100%;
height: 4px;
position: relative;
max-width: 460px;
background: var(--color-white-opacity);
border-radius: 20px;
overflow: hidden;
span {
background: var(--color-white);
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
transform-origin: left top;
}
}
&__cover {
margin-bottom: 0.5rem;
height: 450px;
overflow: hidden;
}
&__name {
font-weight: 500;
font-size: 1.5rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
span {
font-weight: 400;
font-size: 1.125rem;
}
}
&__description {
max-width: 820px;
}
}