.page-territory { width: calc(100% - 40px); display: flex; flex-direction: column; margin: 20px 20px 0 20px; } .page-territory>.buttons-list { padding: 10px; margin-bottom: 20px; background: var(--ColorThemes1); color: var(--ColorThemes3); border: 1px solid var(--ColorThemes2); box-shadow: var(--shadow-l1); border-radius: 15px; overflow: auto; display: flex; } .page-territory>.buttons-list>button, .page-territory>.buttons-list>a { cursor: pointer; border-radius: 10px; padding: 0 10px; margin-right: 20px; min-width: fit-content; min-height: 40px; background: var(--PrimaryColor); display: flex; align-items: center; justify-content: center; } .page-territory>.buttons-list>button>span, .page-territory>.buttons-list>a>span { color: var(--PrimaryColorText); font-size: 14px; font-weight: normal; } .page-territory>.buttons-list>button>svg, .page-territory>.buttons-list>a>svg { width: 20px; height: 20px; fill: var(--PrimaryColorText); margin-right: 10px; } .page-territory details { border-radius: 15px; width: 100%; display: flex; flex-direction: column; align-items: stretch; margin-bottom: 20px; background: var(--ColorThemes1); color: var(--ColorThemes3); border: 1px solid var(--ColorThemes2); box-shadow: var(--shadow-l1); } .page-territory>details[disabled] summary, .page-territory>details.disabled summary { pointer-events: none; user-select: none; } .page-territory>details summary::-webkit-details-marker, .page-territory>details summary::marker { display: none; content: ""; } .page-territory summary { width: calc(100% - 40px); cursor: pointer; color: var(--ColorThemes3); border-radius: var(--border-radius); font-size: 16px; font-weight: 300; padding: 20px; position: relative; } .page-territory summary span { font-weight: 500; } .page-territory #list-house, .page-territory #list-homestead { width: 100%; margin: 0; display: flex; flex-wrap: wrap; flex-direction: row; align-content: flex-start; justify-content: center; overflow-y: auto; align-items: flex-start; transition: .3s ease; } .page-territory .card { position: relative; width: 300px; height: 200px; background-color: var(--ColorThemes2); margin: 0px 10px 20px 10px; overflow: hidden; cursor: pointer; border-radius: 10px; } @media (max-width: 2300px) { .page-territory .card { width: calc((100% / 5) - 40px); } } @media (max-width: 1960px) { .page-territory .card { width: calc((100% / 4) - 40px); } } @media (max-width: 1640px) { .page-territory .card { width: calc((100% / 3) - 40px); } } @media (max-width: 1280px) { .page-territory .card { width: calc((100% / 2) - 40px); } } @media (max-width: 650px) { .page-territory .card { width: 100%; } } @media(hover: hover) { .page-territory .card:hover { opacity: 0.8; } } .page-territory .card>i { position: absolute; width: 100%; height: 100%; object-fit: cover; z-index: 1; filter: blur(2px); /* background-repeat: round; */ background-size: cover; background-position: center; background-image: url(https://tm.rozenrod.com/web/img/bg.webp); } .page-territory .card>a { position: absolute; width: 100%; height: 100%; z-index: 10; } .page-territory .contents { position: absolute; z-index: 2; background: rgb(64 64 64 / 0.7); width: 100%; height: 100%; font-size: 40px; font-weight: 500; color: #fff; display: flex; flex-direction: column; align-items: center; 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; } .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; color: var(--ColorThemes3); border-radius: 7px; position: relative; overflow: hidden; } .page-territory .progress { background: var(--PrimaryColor); height: 100%; position: absolute; z-index: 1; left: 0; } .page-territory .info>div>span { color: var(--ColorThemes3); font-size: 14px; font-weight: 300; z-index: 2; } .page-territory .info>div>p { color: var(--ColorThemes3); font-size: 14px; font-weight: 400; padding: 10px; z-index: 2; }