418 lines
6.5 KiB
CSS
418 lines
6.5 KiB
CSS
/*
|
|
INSTANCE
|
|
*/
|
|
|
|
.instance {
|
|
overflow-x: hidden;
|
|
display: grid;
|
|
grid-template-columns: 2fr minmax(min-content, 1fr);
|
|
grid-template-rows: min-content min-content min-content 1fr;
|
|
|
|
grid-template-areas:
|
|
"top info"
|
|
"vbox info"
|
|
"equip info"
|
|
"constructs info";
|
|
}
|
|
|
|
@media (max-width: 1920px) {
|
|
.instance .info table td svg {
|
|
height: 50%;
|
|
}
|
|
|
|
.instance svg {
|
|
height: 1.5em;
|
|
}
|
|
}
|
|
|
|
.instance .top {
|
|
grid-area: top;
|
|
}
|
|
|
|
.instance.lobby {
|
|
align-content: center;
|
|
}
|
|
|
|
.scoreboard .ready {
|
|
background: black;
|
|
color: forestgreen;
|
|
}
|
|
|
|
.instance .info {
|
|
/*font-size: 75%;*/
|
|
margin-left: 1em;
|
|
grid-area: info;
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: center;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.instance .info h2 {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.instance .info .combos {
|
|
margin-top: 1.5em;
|
|
}
|
|
|
|
.instance .constructs {
|
|
grid-area: constructs;
|
|
}
|
|
|
|
.instance .equip {
|
|
grid-area: equip;
|
|
}
|
|
|
|
.instance .equip .skills {
|
|
border-right-width: 0;
|
|
}
|
|
|
|
/* VBOX */
|
|
.vbox {
|
|
align-items: flex-end;
|
|
grid-area: vbox;
|
|
display: grid;
|
|
grid-template-rows: min-content min-content;
|
|
grid-template-areas:
|
|
"vbox combiner"
|
|
"vbox inventory";
|
|
}
|
|
|
|
.vbox-box {
|
|
grid-area: vbox;
|
|
}
|
|
|
|
.vbox-inventory {
|
|
grid-area: inventory;
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.vbox-combiner {
|
|
margin-left: 1em;
|
|
grid-area: combiner;
|
|
}
|
|
|
|
|
|
.vbox-btn:active, .vbox-btn:hover, .vbox-btn:focus {
|
|
color: white;
|
|
}
|
|
|
|
.vbox-btn.reclaiming, .vbox-btn.reclaim.reclaiming:hover {
|
|
background: #a52a2a;
|
|
color: black;
|
|
box-shadow: inset 0.5em 0 0 0 #a52a2a;
|
|
}
|
|
|
|
.vbox-btn.reclaim:hover {
|
|
color: #a52a2a;
|
|
}
|
|
|
|
.vbox-hdr {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
|
|
flex: 1 0 100%;
|
|
}
|
|
|
|
.vbox-hdr h3 {
|
|
flex: 1;
|
|
}
|
|
|
|
.vbox-hdr .bits {
|
|
font-size: 2em;
|
|
line-height: 1em;
|
|
animation: bits 1s ease-out;
|
|
}
|
|
|
|
@keyframes action {
|
|
0% {
|
|
color: palegoldenrod;
|
|
}
|
|
100% {
|
|
color: whitesmoke;
|
|
}
|
|
}
|
|
|
|
.vbox button {
|
|
width: 100%;
|
|
margin: 0;
|
|
background-color: #333;
|
|
border-width: 0;
|
|
}
|
|
|
|
.vbox-table td {
|
|
transition-property: color, background, border;
|
|
transition-duration: 0.5s;
|
|
transition-delay: 0;
|
|
transition-timing-function: linear;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.vbox-table td:active {
|
|
background: whitesmoke;
|
|
color: black;
|
|
}
|
|
|
|
/* CONSTRUCT LIST */
|
|
|
|
.construct-list {
|
|
grid-area: constructs;
|
|
display: flex;
|
|
}
|
|
|
|
.instance-construct {
|
|
flex: 1;
|
|
display: grid;
|
|
grid-template-rows: min-content min-content min-content 1fr min-content;
|
|
grid-template-areas:
|
|
"name "
|
|
"skills "
|
|
"specs "
|
|
"avatar "
|
|
"stats ";
|
|
|
|
/*padding: 0.5em;*/
|
|
border: 2px solid #222;
|
|
border-left-width: 0;
|
|
}
|
|
|
|
.instance-construct:first-child {
|
|
margin-left: 0;
|
|
border-left-width: 1px;
|
|
}
|
|
|
|
.construct-list .name {
|
|
grid-area: name;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
.construct-list .avatar {
|
|
grid-area: avatar;
|
|
object-fit: contain;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.construct-list .name {
|
|
text-align: center;
|
|
}
|
|
|
|
.construct-list .skills {
|
|
grid-area: skills;
|
|
display: flex;
|
|
border-width: 0px;
|
|
}
|
|
|
|
.construct-list .skills button {
|
|
flex: 1;
|
|
/*border: 1px solid #222;*/
|
|
border: none;
|
|
}
|
|
|
|
.construct-list .specs {
|
|
margin-top: 1em;
|
|
grid-area: specs;
|
|
display: flex;
|
|
flex: 1;
|
|
justify-content: center;
|
|
border-width: 0px;
|
|
}
|
|
|
|
.construct-list .specs figure {
|
|
flex: 1;
|
|
border: 0;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.construct-list .specs figcaption {
|
|
font-size: 75%;
|
|
}
|
|
|
|
.construct-list .stats {
|
|
grid-area: stats;
|
|
display: flex;
|
|
flex-flow: row;
|
|
flex: 1;
|
|
border-width: 0px;
|
|
text-align: center;
|
|
}
|
|
|
|
.construct-list .stats figcaption {
|
|
font-size: 75%;
|
|
}
|
|
|
|
.stats div:nth-child(4n) {
|
|
margin: 0 1em;
|
|
}
|
|
|
|
.stats div {
|
|
flex: 1;
|
|
}
|
|
|
|
.construct-list .stats .damage-label {
|
|
grid-area: dl;
|
|
display: flex;
|
|
justify-content: center;
|
|
color: #666;
|
|
}
|
|
|
|
.construct-list .stats .speed-label {
|
|
grid-area: sl;
|
|
display: flex;
|
|
justify-content: center;
|
|
color: #666;
|
|
}
|
|
|
|
.construct-list .stats .life-label {
|
|
grid-area: ll;
|
|
display: flex;
|
|
justify-content: center;
|
|
color: #666;
|
|
}
|
|
|
|
/* Equipment */
|
|
.equip {
|
|
display: flex;
|
|
margin: 1.5em 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.equip h3 {
|
|
margin-bottom: 0.5em;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
.equip .specs {
|
|
flex: 1;
|
|
border: 2px solid #222;
|
|
}
|
|
|
|
.equip .items {
|
|
display: flex;
|
|
flex: 1 0 100%;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.label {
|
|
flex: 1 0 100%;
|
|
}
|
|
|
|
.equip .skills {
|
|
flex: 1;
|
|
border: 2px solid #222;
|
|
}
|
|
|
|
.equip .skills button {
|
|
color: whitesmoke;
|
|
font-size: 1em;
|
|
padding: 0.2em;
|
|
border-width: 0px;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
.equipping {
|
|
position: relative;
|
|
}
|
|
|
|
.equipping::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 2px;
|
|
left: 50%;
|
|
width: 100%;
|
|
height: 2px;
|
|
transform-origin: center;
|
|
background-color: whitesmoke;
|
|
animation: equipping-skill 2s infinite ease-out alternate;
|
|
opacity: 0;
|
|
}
|
|
|
|
.equipping::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 2px;
|
|
left: 50%;
|
|
width: 100%;
|
|
height: 2px;
|
|
transform-origin: center;
|
|
background-color: whitesmoke;
|
|
animation: equipping-skill 2s infinite ease-out alternate;
|
|
opacity: 0;
|
|
animation-delay: 0.75s
|
|
}
|
|
|
|
@keyframes equipping-skill {
|
|
from {
|
|
transform: translate(-50%, 0) scaleX(0);
|
|
}
|
|
|
|
to {
|
|
transform: translate(-50%, 0) scaleX(0.75);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.equip .specs figure {
|
|
border: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.equip-spec {
|
|
position: relative;
|
|
stroke: #333;
|
|
}
|
|
|
|
.equip-spec::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 2px;
|
|
left: 50%;
|
|
width: 100%;
|
|
height: 2px;
|
|
transform-origin: center;
|
|
background-color: whitesmoke;
|
|
animation: equipping-skill 2s infinite ease-out alternate;
|
|
opacity: 0;
|
|
}
|
|
|
|
.equip .specs figcaption {
|
|
font-size: 75%;
|
|
}
|
|
|
|
.thresholds {
|
|
display: flex;
|
|
flex-flow: column;
|
|
text-align: center;
|
|
}
|
|
|
|
.thresholds svg {
|
|
stroke-width: 5px;
|
|
}
|
|
|
|
.thresholds hr {
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.colour-reqs {
|
|
display: flex;
|
|
flex-flow: row;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.thresholds figure svg {
|
|
height: 1.5em;
|
|
}
|
|
|
|
.thresholds .unmet {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
/* Mobile Nav*/
|
|
.instance-nav { display: none; }
|