563 lines
11 KiB
CSS
563 lines
11 KiB
CSS
#header-content #search-players-container {
|
|
width: 79.4074vh;
|
|
height: 9.2593vh;
|
|
|
|
margin-right: 4.6296vh;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#search-players-container input {
|
|
width: 52.5vh;
|
|
height: 1.1111vh;
|
|
|
|
border-radius: .7292vw;
|
|
outline: 0;
|
|
border: 0;
|
|
|
|
padding-left: 1.7593vh;
|
|
padding-top: 1.7593vh;
|
|
padding-bottom: 1.7593vh;
|
|
|
|
background-image: url(img/SearchPlayersBg.png);
|
|
background-size: cover;
|
|
background-position: center;
|
|
|
|
font-size: .8333vw;
|
|
font-weight: 400;
|
|
color: white;
|
|
|
|
background-color: rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
input:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
#search-players-container input::placeholder {
|
|
font-size: .8333vw;
|
|
font-weight: 400;
|
|
color: rgba(255, 255, 255, 0.30);
|
|
}
|
|
|
|
#right-page-container #player-categories-container {
|
|
width: 100%;
|
|
height: 3.2407vh;
|
|
|
|
margin-top: 1.3889vh;
|
|
|
|
display: flex;
|
|
}
|
|
|
|
#player-categories-container #player-categories {
|
|
width: 63.2407vh;
|
|
height: 3.2407vh;
|
|
|
|
margin-left: 3.4259vh;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
#player-categories-container #registered-characters-count {
|
|
width: 49.2593vh;
|
|
height: 3.2407vh;
|
|
|
|
display: flex;
|
|
justify-content: right;
|
|
align-items: center;
|
|
|
|
font-size: .7813vw;
|
|
font-family: "SF Pro Display";
|
|
opacity: 0.40;
|
|
}
|
|
|
|
#player-categories #player-category {
|
|
width: 7.6852vh;
|
|
height: 3.2407vh;
|
|
margin-right: 0.9259vh;
|
|
|
|
border-radius: .4688vw;
|
|
|
|
background: rgba(0, 0, 0);
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
|
|
font-family: "SF Pro Display";
|
|
font-size: .7813vw;
|
|
|
|
opacity: 0.20;
|
|
transition: box-shadow 0.3s, background-color 0.3s;
|
|
|
|
cursor: pointer;
|
|
}
|
|
#player-categories #player-category.all {
|
|
width: 6.2037vh;
|
|
}
|
|
|
|
#player-categories #player-category:hover,
|
|
#player-categories #player-category.active {
|
|
background: linear-gradient(90deg, rgba(57, 255, 113, 0.51) 0%, rgba(73, 208, 111, 0.51) 100%);
|
|
box-shadow: 0 0 6.2963vh 0 #39FF71;
|
|
opacity: 1;
|
|
}
|
|
|
|
#right-page-container #real-page-content {
|
|
width: 100%;
|
|
height: 55.3704vh;
|
|
|
|
margin-top: 2.3148vh;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
#real-page-content #real-page-container {
|
|
width: 112.5vh;
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
#real-page-container #players-container {
|
|
width: 100%;
|
|
max-height: 100%;
|
|
|
|
overflow-y: auto;
|
|
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 2.3148vh;
|
|
align-content: flex-start;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
#players-container #player-container {
|
|
width: 20.463vh;
|
|
height: 23.1481vh;
|
|
|
|
border-radius: .4688vw;
|
|
background-image: url(img/PlayerCardBg.png);
|
|
background-size: cover;
|
|
background-position: center;
|
|
|
|
flex: 0 0 20.463vh;
|
|
transition: 0.3s;
|
|
|
|
color: rgba(255, 255, 255, 0.50);
|
|
overflow: hidden;
|
|
}
|
|
|
|
#players-container #player-container:hover {
|
|
background-image: url(img/PlayerCardHoverBg.png);
|
|
}
|
|
|
|
#player-container #item-header {
|
|
width: 100%;
|
|
height: 4.6296vh;
|
|
display: flex;
|
|
|
|
margin-top: 1.3889vh;
|
|
}
|
|
|
|
#item-header #item-header-icon-box {
|
|
width: 4.6296vh;
|
|
height: 4.6296vh;
|
|
border-radius: 1.2037vh;
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
border: 0.1852vh solid #39FF71;
|
|
box-shadow: 0 0 6.4815vh 0 #39FF71;
|
|
|
|
margin-left: 1.3889vh;
|
|
}
|
|
#item-header #item-header-icon-box.weapon {
|
|
border-color: #fff;
|
|
box-shadow: 0 0 6.4815vh 0 #fff;
|
|
}
|
|
#item-header #item-header-icon-box.craftable {
|
|
border-color: #39C4FF;
|
|
box-shadow: 0 0 6.4815vh 0 #39C4FF;
|
|
}
|
|
|
|
#item-header-icon-box img {
|
|
width: 2.7778vh;
|
|
height: 2.7778vh;
|
|
}
|
|
|
|
#item-header #item-header-credentials {
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
margin-left: 1.3889vh;
|
|
}
|
|
|
|
#item-header-credentials span.label {
|
|
width: 9.2593vh;
|
|
|
|
font-size: 1.1111vh;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#item-header-credentials span.code {
|
|
width: 11.1111vh;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
font-size: 1.1111vh;
|
|
font-weight: 600;
|
|
opacity: .4;
|
|
}
|
|
|
|
#player-container #credentials-list {
|
|
width: 100%;
|
|
height: 13.6111vh;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
#credentials-list #credential-item {
|
|
width: 100%;
|
|
height: auto;
|
|
|
|
display: flex;
|
|
font-size: 1.1111vh;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#credential-item #credential-icon {
|
|
width: calc(1.8519vh + 1.4815vh);
|
|
height: auto;
|
|
display: flex;
|
|
justify-content: right;
|
|
}
|
|
|
|
#player-container #box-line {
|
|
width: 14.537vh;
|
|
height: 0.0926vh;
|
|
|
|
margin-left: 2.963vh;
|
|
|
|
background-color: white;
|
|
opacity: .07;
|
|
}
|
|
|
|
#player-container span.inspect {
|
|
width: 100%;
|
|
margin-top: 1.2037vh;
|
|
|
|
font-size: 1.1111vh;
|
|
font-weight: 600;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#right-page-container #iinfo-page-content {
|
|
width: calc(86.5741vh + 2.3148vh + 23.2407vh);
|
|
height: 60.8333vh;
|
|
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-left: 3.4259vh;
|
|
margin-top: 3.7037vh;
|
|
}
|
|
|
|
#iinfo-page-content #iinfo-left-box {
|
|
width: 86.5741vh;
|
|
height: 60.8333vh;
|
|
|
|
border-radius: 0.8333vh;
|
|
background: rgba(0, 0, 0, 0.2);
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
}
|
|
|
|
#iinfo-page-content #iinfo-right-box {
|
|
width: 23.2407vh;
|
|
height: 60.8333vh;
|
|
|
|
border-radius: 0.9259vh;
|
|
|
|
background-image: url(img/InfoCraftableRecipesBg.png);
|
|
background-size: 100%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
#iinfo-right-box #iinfo-right-line {
|
|
width: 17.6852vh;
|
|
height: 0.0926vh;
|
|
background-color: white;
|
|
opacity: .07;
|
|
|
|
margin-top: 2.4074vh;
|
|
}
|
|
|
|
#iinfo-right-box #iinfo-right-receipe-list {
|
|
height: 46.6667vh;
|
|
width: 100%;
|
|
margin-top: 1.8519vh;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
gap: 0.9259vh;
|
|
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#iinfo-right-receipe-list #iinfo-right-receipe-item {
|
|
width: 21.3889vh;
|
|
height: 6.1111vh;
|
|
|
|
border-radius: 0.9259vh;
|
|
background: rgba(217, 217, 217, 0.06);
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
}
|
|
|
|
#iinfo-right-receipe-item #iinfo-receipe-item-icon {
|
|
width: 4.6296vh;
|
|
height: 4.6296vh;
|
|
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
border: 0.1852vh solid #37B9F1;
|
|
border-radius: 1.2037vh;
|
|
box-shadow: 0 0 4.6296vh 0 #37B9F1;
|
|
|
|
margin-left: 0.7407vh;
|
|
}
|
|
|
|
#iinfo-receipe-item-icon img {
|
|
width: 2.7778vh;
|
|
height: 2.7778vh;
|
|
}
|
|
|
|
#iinfo-right-receipe-item #iinfo-receipe-item-info {
|
|
width: 7.4074vh;
|
|
height: 4.6296vh;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
|
|
font-size: 1.1111vh;
|
|
font-weight: 600;
|
|
|
|
margin-left: 1.3889vh;
|
|
}
|
|
|
|
#iinfo-right-receipe-list span.noItemFound {
|
|
width: 16.2037vh;
|
|
font-size: 1.4815vh;
|
|
font-weight: 600;
|
|
opacity: .32;
|
|
|
|
margin-top: 21.1111vh;
|
|
|
|
display: flex;
|
|
text-align: center;
|
|
}
|
|
|
|
#iinfo-right-receipe-item span.itemCount {
|
|
position: absolute;
|
|
|
|
font-size: 1.1111vh;
|
|
font-weight: 600;
|
|
opacity: .65;
|
|
|
|
right: 1.8519vh;
|
|
}
|
|
|
|
/* Item Info Left Box Header Start */
|
|
|
|
#iinfo-left-box #iinfo-left-item-bg {
|
|
width: 30.3704vh;
|
|
height: 15.1852vh;
|
|
z-index: -1;
|
|
|
|
display: flex;
|
|
justify-content: right;
|
|
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
#iinfo-left-item-bg img {
|
|
margin-left: 0.9259vh;
|
|
}
|
|
|
|
#iinfo-left-box #iinfo-left-header {
|
|
width: 100%;
|
|
height: 6.1111vh;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
position: relative;
|
|
}
|
|
|
|
#iinfo-left-header #iinfo-left-item-icon {
|
|
width: 4.6296vh;
|
|
height: 4.6296vh;
|
|
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
border: 0.1852vh solid #39FF71;
|
|
border-radius: 1.2037vh;
|
|
box-shadow: 0 0 4.6296vh 0 #39FF71;
|
|
background: rgba(57, 255, 113, 0.218);
|
|
|
|
margin-left: 1.8519vh;
|
|
}
|
|
#iinfo-left-header #iinfo-left-item-icon.craftable {
|
|
border-color: #37B9F1;
|
|
box-shadow: 0 0 4.6296vh 0 #37B9F1;
|
|
background: rgba(55, 185, 241, 0.218);
|
|
}
|
|
#iinfo-left-header #iinfo-left-item-icon.weapon {
|
|
border-color: white;
|
|
box-shadow: 0 0 4.6296vh 0 white;
|
|
background: rgba(255, 255, 255, 0.218);
|
|
}
|
|
|
|
#iinfo-left-item-icon img {
|
|
width: 2.7778vh;
|
|
height: 2.7778vh;
|
|
}
|
|
|
|
#iinfo-left-header #iinfo-left-text-credentials {
|
|
width: 9.2593vh;
|
|
height: 4.6296vh;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
|
|
font-size: 1.1111vh;
|
|
font-weight: 600;
|
|
|
|
margin-left: 1.8519vh;
|
|
}
|
|
|
|
#iinfo-left-header #iinfo-left-goback-button {
|
|
position: absolute;
|
|
right: 1.8519vh;
|
|
|
|
width: 10.5556vh;
|
|
height: 3.5185vh;
|
|
|
|
background-image: url(img/GoBackButtonBg.png);
|
|
background-size: 100%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
|
|
border-radius: 0.6481vh;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
font-size: 1.1111vh;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#iinfo-left-box #iinfo-left-line {
|
|
width: 82.7778vh;
|
|
height: 0.0926vh;
|
|
opacity: .07;
|
|
background-color: white;
|
|
|
|
margin-left: 1.8519vh;
|
|
}
|
|
|
|
#iinfo-left-box #iinfo-left-container {
|
|
width: 100%;
|
|
height: 54.7222vh;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#iinfo-left-container #iinfo-left-credentials-box {
|
|
width: 82.8704vh;
|
|
height: 51.0185vh;
|
|
|
|
border-radius: 0.9259vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
background-image: url(img/craftableItemInformation.png);
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: 100%;
|
|
}
|
|
|
|
#iinfo-left-credentials-box #iinfo-left-credential-input {
|
|
width: 78.2407vh;
|
|
height: auto;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
font-size: 0.9259vh;
|
|
font-weight: 500;
|
|
}
|
|
|
|
#iinfo-left-credential-input input {
|
|
width: calc(78.2407vh - 3.2407vh);
|
|
height: 2.7778vh;
|
|
padding-left: 3.2407vh;
|
|
|
|
border-radius: 0.6481vh;
|
|
border: 0;
|
|
|
|
background-size: 100%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-color: transparent;
|
|
|
|
margin-top: 0.9259vh;
|
|
|
|
font-size: 1.1111vh;
|
|
font-weight: 600;
|
|
color: white;
|
|
}
|
|
|
|
/* Item Info Left Box Header End */ |