- added page managebandi;

- improved styles of the pages and sections;
This commit is contained in:
Vitalii Kiiko
2024-08-14 08:28:54 +02:00
parent c09127a675
commit 76b5dd2ece
28 changed files with 945 additions and 56 deletions

View File

@@ -0,0 +1,44 @@
.statsBigBadges {
}
.statsBigBadges__grid {
display: grid;
align-items: center;
grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
gap: 24px;
}
.statsBigBadges__gridItem {
display: flex;
justify-content: space-between;
padding: 28px;
border-radius: 6px;
border: 1px solid var(--yellow-500);
background: var(--card-full-background-color-2);
align-items: center;
gap: 48px;
span {
color: #FFF;
font-size: 21px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
span:nth-last-of-type(1) {
font-size: 28px;
}
&:nth-of-type(2) {
border: 1px solid var(--yellow-500);
background: var(--card-full-background-color-3);
}
&:nth-of-type(3) {
border: 1px solid var(--yellow-500);
background: var(--card-full-background-color-4);
}
&:nth-of-type(4) {
border: 1px solid var(--yellow-500);
background: var(--card-full-background-color-1);
}
}