This commit is contained in:
2025-09-09 00:10:53 +03:00
parent 38f2a05107
commit 204fc092d7
239 changed files with 22447 additions and 9536 deletions

View File

@@ -8,20 +8,20 @@
.page-territory>.buttons-list {
padding: 10px;
margin-bottom: 20px;
margin-bottom: 40px;
background: var(--ColorThemes1);
color: var(--ColorThemes3);
border: 1px solid var(--ColorThemes2);
box-shadow: var(--shadow-l1);
border-radius: 15px;
border-radius: var(--border-radius);
overflow: auto;
display: flex;
display: none;
}
.page-territory>.buttons-list>button,
.page-territory>.buttons-list>a {
cursor: pointer;
border-radius: 10px;
border-radius: calc(var(--border-radius) - 5px);
padding: 0 10px;
margin-right: 20px;
min-width: fit-content;
@@ -35,7 +35,7 @@
.page-territory>.buttons-list>button>span,
.page-territory>.buttons-list>a>span {
color: var(--PrimaryColorText);
font-size: 14px;
font-size: var(--FontSize3);
font-weight: normal;
}
@@ -47,13 +47,87 @@
margin-right: 10px;
}
.page-territory>.list-controls {
padding: 10px;
margin: 0px 0 10px 0;
background: var(--ColorThemes1);
color: var(--ColorThemes3);
border: 1px solid var(--ColorThemes2);
box-shadow: var(--shadow-l1);
border-radius: var(--border-radius);
overflow: auto;
display: flex;
}
.page-territory>.list-controls select {
min-width: 140px;
height: 30px;
background-color: var(--ColorThemes2);
border: 1px solid var(--ColorThemes0);
box-shadow: var(--shadow-l1);
color: var(--ColorThemes3);
font-size: var(--FontSize1);
cursor: pointer;
padding: 0 5px;
margin-right: 10px;
border-radius: calc(var(--border-radius) - 5px - 2px);
}
#page-territory-sort {
display: flex;
}
#page-territory-sort button {
display: none;
font-size: 18px;
background: 0;
cursor: pointer;
min-width: 30px;
height: 30px;
padding: 0;
margin-right: 10px;
align-items: center;
align-content: center;
justify-content: center;
color: var(--ColorThemes3);
border-radius: calc(var(--border-radius) - 5px - 2px);
border: 1px solid var(--ColorThemes0);
}
#page-territory-sort button[data-state="active"] {
background: var(--PrimaryColor);
}
#page-territory-sort button:hover {
background: var(--ColorThemes3);
}
#page-territory-sort button>svg {
width: 22px;
fill: var(--PrimaryColorText);
}
#page-territory-sort button:hover svg {
fill: var(--ColorThemes1);
}
#page-territory-sort button:hover {
display: none;
opacity: 1;
}
#page-territory-sort button[data-state="active"] {
display: flex;
}
.page-territory details {
border-radius: 15px;
border-radius: var(--border-radius);
width: 100%;
display: flex;
flex-direction: column;
align-items: stretch;
margin-bottom: 20px;
margin-bottom: 10px;
background: var(--ColorThemes1);
color: var(--ColorThemes3);
border: 1px solid var(--ColorThemes2);
@@ -78,16 +152,53 @@
cursor: pointer;
color: var(--ColorThemes3);
border-radius: var(--border-radius);
font-size: 16px;
font-size: var(--FontSize5);
font-weight: 300;
padding: 20px;
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
}
.page-territory summary span {
font-weight: 500;
}
.page-territory summary>div>button {
display: none;
font-size: 18px;
background: 0;
cursor: pointer;
min-width: 30px;
height: 30px;
padding: 0;
margin: 0;
align-items: center;
align-content: center;
justify-content: center;
color: var(--ColorThemes3);
border-radius: 8px;
}
.page-territory summary>div>button[data-state="active"] {
background: var(--PrimaryColor);
display: flex;
}
.page-territory summary>div>button:hover {
background: var(--ColorThemes3);
}
.page-territory summary>div>button>svg {
width: 22px;
fill: var(--PrimaryColorText);
}
.page-territory summary>div>button:hover svg {
fill: var(--ColorThemes1);
}
.page-territory #list-house,
.page-territory #list-homestead {
width: 100%;
@@ -110,7 +221,7 @@
margin: 0px 10px 20px 10px;
overflow: hidden;
cursor: pointer;
border-radius: 10px;
border-radius: calc(var(--border-radius) - 5px);
}
@media (max-width: 2300px) {
@@ -159,7 +270,7 @@
/* background-repeat: round; */
background-size: cover;
background-position: center;
background-image: url(https://tm.rozenrod.com/web/img/bg.webp);
background-color: var(--PrimaryColor);
}
.page-territory .card>a {
@@ -180,45 +291,25 @@
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
align-items: stretch;
justify-content: space-between;
}
.page-territory .group {
width: calc(100% - 20px);
max-height: 50px;
border-radius: 7px;
padding: 10px 0;
margin-top: 10px;
display: flex;
background: var(--PrimaryColor);
align-items: center;
flex-direction: column;
justify-content: space-around;
}
.page-territory .group>span {
color: #fff;
font-size: 14px;
font-weight: 400;
}
.page-territory .info {
width: calc(100% - 20px);
margin-bottom: 10px;
margin: 10px;
}
.page-territory .info>div {
width: 100%;
height: 35px;
margin-top: 5px;
display: flex;
background: var(--ColorThemes0);
align-items: center;
justify-content: center;
font-size: 12px;
font-size: var(--FontSize1);
color: var(--ColorThemes3);
border-radius: 7px;
border-radius: calc(var(--border-radius) - 5px - 4px);
position: relative;
overflow: hidden;
}
@@ -233,15 +324,42 @@
.page-territory .info>div>span {
color: var(--ColorThemes3);
font-size: 14px;
font-size: var(--FontSize3);
font-weight: 300;
z-index: 2;
}
.page-territory .info>div>p {
color: var(--ColorThemes3);
font-size: 14px;
font-size: var(--FontSize3);
font-weight: 400;
padding: 10px;
z-index: 2;
}
.page-territory .sheep {
margin: 10px;
max-height: 50px;
border-radius: calc(var(--border-radius) - 5px - 4px);
padding: 10px 0;
margin-top: 10px;
display: flex;
background: var(--PrimaryColor);
align-items: center;
flex-direction: column;
justify-content: space-around;
}
.page-territory .sheep>span {
color: var(--PrimaryColorText);
font-size: var(--FontSize3);
font-weight: 400;
opacity: 0.8;
}
.page-territory .sheep>p {
color: var(--PrimaryColorText);
font-size: var(--FontSize4);
font-weight: 400;
margin-top: 5px;
}