guild_front/src/components/ArchiveTableTracker/archiveTableTracker.scss

86 lines
1.7 KiB
SCSS
Raw Normal View History

2023-12-04 17:30:52 +03:00
.archive {
&__table {
margin: 29px 0 0 0;
2024-01-12 19:11:36 +03:00
display: flex;
flex-direction: column;
2023-12-04 17:30:52 +03:00
width: 100%;
font-size: 14px;
font-weight: 400;
thead {
2024-01-12 19:11:36 +03:00
display: flex;
2023-12-04 17:30:52 +03:00
background: #f1f1f1;
color: #5b6871;
border-radius: 12px;
background: #f1f1f1;
color: #5b6871;
2024-01-12 19:11:36 +03:00
tr {
display: grid;
padding: 20px 10px 11px;
grid-template-columns: 40% 20% 40%;
width: 100%;
}
2023-12-04 17:30:52 +03:00
th {
2024-01-12 19:11:36 +03:00
display: flex;
text-align: center;
color: #5B6871;
line-height: 32px;
font-size: 14px;
2023-12-04 17:30:52 +03:00
&:first-child {
padding-left: 10px;
border-top-left-radius: 12px;
border-bottom-left-radius: 12px;
}
&:last-child {
border-top-right-radius: 12px;
border-bottom-right-radius: 12px;
}
}
}
tbody {
2024-01-12 19:11:36 +03:00
display: grid;
max-height: 600px;
overflow-y: auto;
2023-12-04 17:30:52 +03:00
color: #000;
2024-01-12 19:11:36 +03:00
&::-webkit-scrollbar {
width: 5px;
border-radius: 10px;
}
&::-webkit-scrollbar-thumb {
background: #cbd9f9;
border-radius: 5px;
}
2023-12-04 17:30:52 +03:00
tr {
2024-01-12 19:11:36 +03:00
display: grid;
height: 65px;
align-items: center;
2023-12-04 17:30:52 +03:00
background-color: white;
2024-01-12 19:11:36 +03:00
grid-template-columns: 40% 20% 40%;
border-bottom: 1px solid rgba(241, 241, 241, 1);
2023-12-04 17:30:52 +03:00
&:nth-child(2n) {
background-color: rgba(241, 241, 241, 0.23);
}
}
td {
2024-01-12 19:11:36 +03:00
display: flex;
2023-12-04 17:30:52 +03:00
&:first-child {
max-width: 275px;
padding-left: 10px;
color: #111112;
font-size: 17px;
font-weight: 700;
}
}
}
}
}