2023-12-08 13:35:56 +03:00
|
|
|
.home {
|
|
|
|
width: 100%;
|
2023-12-15 13:25:44 +03:00
|
|
|
max-width: 1320px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 15px 15px 100px;
|
2023-12-08 13:35:56 +03:00
|
|
|
&__title {
|
|
|
|
font-size: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__info {
|
|
|
|
width: 100%;
|
|
|
|
margin: 35px 0;
|
2023-12-19 16:23:03 +03:00
|
|
|
min-height: 168px;
|
2023-12-08 13:35:56 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
row-gap: 15px;
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
background: #0255ff;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
border-radius: 8px;
|
|
|
|
width: 5px;
|
|
|
|
height: 10px;
|
|
|
|
background: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info {
|
|
|
|
&__top {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
min-width: 1213px;
|
2023-12-15 13:25:44 +03:00
|
|
|
max-height: 40px;
|
2023-12-08 13:35:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
&__search {
|
|
|
|
display: flex;
|
|
|
|
padding: 5px 10px;
|
|
|
|
border-radius: 8px;
|
|
|
|
border: 2px solid gray;
|
|
|
|
max-width: 300px;
|
|
|
|
width: 100%;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
input {
|
|
|
|
border: none;
|
|
|
|
width: 100%;
|
|
|
|
outline: none;
|
2023-12-15 13:25:44 +03:00
|
|
|
box-shadow: none;
|
2023-12-08 13:35:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__filters {
|
|
|
|
display: flex;
|
|
|
|
padding: 10px 15px;
|
|
|
|
background-color: #2f95f2;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
min-width: 1213px;
|
|
|
|
|
|
|
|
&Img {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__items {
|
|
|
|
display: flex;
|
|
|
|
column-gap: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 17px;
|
|
|
|
max-width: 200px;
|
|
|
|
border: none;
|
|
|
|
color: white;
|
|
|
|
width: 100%;
|
|
|
|
cursor: pointer;
|
|
|
|
column-gap: 8px;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 17px;
|
|
|
|
height: 17px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter {
|
|
|
|
&__reset {
|
|
|
|
background-color: #0668c2;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__confirm {
|
|
|
|
background-color: #00529d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__tableWrapper {
|
|
|
|
min-width: 1243px;
|
2023-12-19 16:23:03 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2023-12-08 13:35:56 +03:00
|
|
|
|
|
|
|
.tableItem {
|
|
|
|
padding: 10px;
|
|
|
|
border: 1px solid #cbcbcb;
|
|
|
|
|
|
|
|
&__name {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__edit {
|
|
|
|
display: flex;
|
|
|
|
cursor: pointer;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
img {
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
}
|
|
|
|
}
|
2023-12-15 13:25:44 +03:00
|
|
|
|
|
|
|
td {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2023-12-08 13:35:56 +03:00
|
|
|
}
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 500;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
row-gap: 10px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
thead {
|
|
|
|
display: grid;
|
|
|
|
|
|
|
|
tr {
|
|
|
|
display: grid;
|
2023-12-19 16:23:03 +03:00
|
|
|
grid-template-columns: 30% 20% 16% 12% 14% 8%;
|
2023-12-08 13:35:56 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody {
|
|
|
|
display: grid;
|
|
|
|
row-gap: 10px;
|
|
|
|
|
|
|
|
tr {
|
|
|
|
display: grid;
|
2023-12-19 16:23:03 +03:00
|
|
|
grid-template-columns: 30% 20% 16% 12% 14% 8%;
|
2023-12-08 13:35:56 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-12-15 13:25:44 +03:00
|
|
|
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
max-width: 1320px;
|
|
|
|
padding: 0 15px;
|
|
|
|
margin: 0 auto;
|
|
|
|
height: 100%;
|
|
|
|
}
|