guild_front/src/components/Sidebar/Sidebar.module.css

133 lines
2.3 KiB
CSS
Raw Normal View History

2021-05-31 18:23:25 +03:00
.candidateSidebar {
display: flex;
flex-direction: column;
align-items: center;
border: 2px solid whitesmoke;
border-bottom: none !important;
2021-06-07 17:48:07 +03:00
position: sticky;
top: 80px;
2021-05-31 18:23:25 +03:00
}
.candidateSidebar__info {
text-align: center;
margin-top: 40px;
}
2021-06-09 15:00:15 +03:00
@media (max-width: 575.98px) {
.candidateSidebar__info {
margin-top: 140px;
}
}
2021-05-31 18:23:25 +03:00
.candidateSidebar__info > img {
width: 180px;
height: 180px;
}
.candidateSidebar__info__e {
font-family: 'GT Eesti Pro Display';
font-size: 1.8em;
2021-06-04 11:59:45 +03:00
font-weight: normal;
2021-05-31 18:23:25 +03:00
font-style: normal;
letter-spacing: normal;
line-height: 36px;
margin-top: 20px;
}
.candidateSidebar__info__y {
2021-06-04 11:59:45 +03:00
font-family: 'GT Eesti Pro Display';
2021-05-31 18:23:25 +03:00
font-size: 3em;
font-weight: 700;
font-style: normal;
letter-spacing: normal;
line-height: normal;
}
.candidateSidebar__info__btn {
width: 280px;
height: 60px;
border-radius: 100px;
border: none;
2021-06-04 11:59:45 +03:00
background-color: #73c141;
2021-05-31 18:23:25 +03:00
color: #ffffff;
2021-06-04 11:59:45 +03:00
font-family: 'Muller';
font-size: 1.6em;
2021-05-31 18:23:25 +03:00
font-style: normal;
letter-spacing: normal;
line-height: normal;
text-align: center;
margin-top: 20px;
margin-bottom: 120px;
}
2021-06-10 18:17:50 +03:00
.candidateSidebar__info__btn:hover {
background: rgba(0, 0, 0, 0);
color: #73c141;
box-shadow: inset 0 0 0 3px #73c141;
}
2021-05-31 18:23:25 +03:00
.candidateSidebar__info__l {
font-family: 'GT Eesti Pro Display';
font-size: 1.8em;
font-weight: 600;
font-style: normal;
letter-spacing: normal;
line-height: 36px;
text-align: center;
}
.candidateSidebar__arrows {
display: flex;
align-items: center;
margin-top: 20px;
}
2021-06-09 15:00:15 +03:00
@media (max-width: 575.98px) {
.candidateSidebar__info__btn,
.candidateSidebar__info__l,
.candidateSidebar__arrows {
display: none;
}
}
2021-06-07 17:48:07 +03:00
.arrow__left {
2021-05-31 18:23:25 +03:00
position: relative;
width: 30px;
height: 30px;
border-radius: 20px;
background-color: #f6f6f6;
}
.arrow__left > img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.arrows__sp {
color: #705fa3;
2021-06-04 11:59:45 +03:00
font-family: 'Circe';
font-size: 1.3em;
2021-05-31 18:23:25 +03:00
font-weight: 400;
font-style: normal;
letter-spacing: normal;
text-align: center;
margin: 0 10px;
}
.arrow__right {
position: relative;
width: 30px;
height: 30px;
border-radius: 20px;
background-color: #74be4d;
}
.arrow__right > img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}