guild_front/src/components/ProfileCalendar/profileCalendar.scss

102 lines
1.5 KiB
SCSS
Raw Normal View History

2023-01-16 16:28:56 +03:00
.profile__calendar {
2023-05-11 19:54:15 +03:00
background: #f1f1f1;
2023-01-13 15:53:07 +03:00
height: 100%;
min-height: 100vh;
font-family: "LabGrotesque", sans-serif;
.container {
max-width: 1160px;
margin-top: 23px;
@media (max-width: 570px) {
margin-top: 0;
}
}
.summary__info {
padding-right: 25px;
2023-02-17 15:19:49 +03:00
@media (max-width: 500px) {
padding-right: 5px;
}
2023-01-13 15:53:07 +03:00
}
2023-01-24 19:11:24 +03:00
2023-03-01 00:28:58 +03:00
.loader__wrapper {
min-height: 719px;
display: flex;
justify-content: center;
align-items: center;
@media (max-width: 1000px) {
min-height: 645px;
}
}
.calendar__wrapper {
min-height: 719px;
@media (max-width: 1000px) {
min-height: auto;
}
}
2023-01-24 19:11:24 +03:00
.loader {
&:hover {
path {
fill: #ffffff;
}
}
}
2022-12-26 15:12:01 +03:00
.profile__calendar {
margin-top: 20px;
}
&__back {
text-decoration: none !important;
color: black !important;
font-size: 14px;
div {
display: flex;
column-gap: 20px;
}
}
&__profile {
margin-top: 42px;
}
2023-01-13 15:53:07 +03:00
&__btn {
transition: all 0.3s ease;
&:hover {
transform: scale(1.02);
}
}
.summary__info {
@media (max-width: 800px) {
.summary__name {
margin: 0;
max-width: 220px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
@media (max-width: 500px) {
.summary__name {
max-width: 150px;
}
}
}
2022-12-26 15:12:01 +03:00
}
2023-10-24 19:41:59 +03:00
.clear-days {
background: red;
padding: 5px 20px;
font-size: 14px;
&:hover {
background: rgba(255, 0, 0, 0.637);
}
}