lending-next/components/team/Team.module.css

114 lines
1.7 KiB
CSS
Raw Normal View History

2022-03-27 14:42:19 +03:00
.ilText{
position: relative;
top:-200px;
left: -40%
}
.ilArrow{
user-select: none;
position: relative;
width: 65%;
}
.miText{
position: relative;
top:-510px;
left: 20%
}
.miArrow{
user-select: none;
transform: rotate(140deg);
position: relative;
width: 65%;
top: -250px;
left: -40%
}
.denText{
position:relative;
top: -200px;
left: 30%
}
.denArrow{
user-select: none;
transform: scale(-1, 1) rotate(-25deg);
position: relative;
width: 65%;
left: -30%;
top: -55px
}
.avatar{
user-select: none;
width: 50%;
cursor: pointer;
z-index: 10;
}
.avatar:hover{
width: 60%;
transition: 0.3s;
opacity: 0.7;
}
.person{
display: inline-flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
2022-05-03 21:34:11 +03:00
2022-03-27 14:42:19 +03:00
.team{
font-family: 'Inconsolata', monospace;
color: #323232;
padding-top: 21%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
scroll-snap-align: start;
}
2022-05-03 21:34:11 +03:00
2022-03-27 14:42:19 +03:00
.carouselAvatar{
display: flex;
flex-direction: row;
gap:10px;
margin-top:5%;
justify-content: center;
align-items: center;
2022-05-03 21:34:11 +03:00
}
@media (max-width: 1150px){
.carouselAvatar{
flex-direction: column ;
}
.danya{
margin-top: -250px;
}
.ilArrow{
width: 55%;
top: -50px;
transform: rotate(-25deg);
left: 27%
}
.ilText{
left: -30%
}
.denArrow{
width: 55%;
left: -35%;
transform: scale(-1, 1) rotate(-35deg);
}
.denText{
top: -170px;
left:15%
}
}
@media (max-width: 500px) {
.team{
padding-top: 50%;
}
2022-03-27 14:42:19 +03:00
}