Template:CharacterTableControls/style.css: Difference between revisions

From Blue Archive Wiki
Jump to navigation Jump to search
Content added Content deleted
No edit summary
(Improve CSS formatting)
Tag: Reverted
Line 1: Line 1:
.charactertable-controls {
.charactertable-controls {
user-select: none;
user-select: none;
box-sizing: border-box;
box-sizing: border-box;
background-color: #f8f9fa;
background-color: #f8f9fa;
border: 1px solid #a2a9b1;
border: 1px solid #a2a9b1;
padding: 0.5em 0.4em;
padding: 0.5em 0.4em;
display: flex;
display: flex;
flex-direction: row;
flex-direction: row;
align-items: center;
align-items: center;
justify-content: space-between;
justify-content: space-between;
flex-wrap: wrap;
flex-wrap: wrap;
gap: 12px 20px;
gap: 12px 20px;
line-height: normal;
line-height: normal;
}
}


.charactertable-controls div.controls > span {
.charactertable-controls div.controls > span {
display: inline-flex;
display: inline-flex;
align-items: center;
align-items: center;
justify-content: center;
justify-content: center;
height:32px;
height: 32px;
width:34px;
width: 34px;
margin: 0 1px;
margin: 0 1px;
border-radius: 2px;
border-radius: 2px;
cursor: pointer;
cursor: pointer;
position: relative;
position: relative;
}
}


.charactertable-controls .inactive {
.charactertable-controls .inactive {
filter: grayscale(0.3);
filter: grayscale(0.3);
opacity: 0.4;
opacity: 0.4;
}
}


.charactertable-controls .controls-school .inactive {
.charactertable-controls .controls-school .inactive {
filter: grayscale(0.8);
filter: grayscale(0.8);
opacity: 0.35;
opacity: 0.35;
}
}






.charactertable-controls div.controls-class > span {
.charactertable-controls div.controls-class > span {
width: 82px;
width: 82px;
height: 26px;
height: 26px;
border-width: 0 3px;
border-width: 0 3px;
border-style: solid;
border-style: solid;
border-radius: 8px;
border-radius: 8px;
font-size: 16px;
font-size: 16px;
font-weight: bold;
font-weight: bold;
text-transform: uppercase;
text-transform: uppercase;
background-color: #ecf5f9;
background-color: #ecf5f9;
transform: skewX(-10deg);
transform: skewX(-10deg);
}
}


.charactertable-controls div.controls-class > span.class-striker {
.charactertable-controls div.controls-class > span.class-striker {
border-color: #f54d29;
border-color: #f54d29;
}
}
.charactertable-controls div.controls-class > span.class-special {
.charactertable-controls div.controls-class > span.class-special {
border-color: #0785fb;
border-color: #0785fb;
}
}


.charactertable-controls div.controls-class > span {
.charactertable-controls div.controls-class > span {
margin: 0 1px!important;
margin: 0 1px !important;
}
}


.charactertable-controls div.controls-school > span {
.charactertable-controls div.controls-school > span {
margin: 0 -2px!important;
margin: 0 -2px !important;
}
}


.charactertable-controls div.controls-attack > span,
.charactertable-controls div.controls-attack > span,
.charactertable-controls div.controls-armor > span {
.charactertable-controls div.controls-armor > span {
border: 1px solid #2d4c72;
border: 1px solid #2d4c72;
}
}


.charactertable-controls div.controls-pool > span {
.charactertable-controls div.controls-pool > span {
width: 82px;
width: 82px;
height: 26px;
height: 26px;
border-width: 0 3px;
border-width: 0 3px;
border-style: solid;
border-style: solid;
border-radius: 8px;
border-radius: 8px;
border-color: #112134;
border-color: #112134;
font-size: 16px;
font-size: 16px;
font-weight: bold;
font-weight: bold;
/* text-transform: uppercase; */
/* text-transform: uppercase; */
background-color: #ecf5f9;
background-color: #ecf5f9;
transform: skewX(-10deg);
transform: skewX(-10deg);
}
}


.charactertable-controls div.controls-pool {
.charactertable-controls div.controls-pool {
flex-grow: 1;
flex-grow: 1;
text-align: right;
text-align: right;
}
}


.charactertable-controls div.controls-school span.school-abydos > img {
.charactertable-controls div.controls-school span.school-abydos > img {
object-position: 0 3px;
object-position: 0 3px;
}
}


@media (max-width: 1200px) {
@media (max-width: 1200px) {
.charactertable-controls div.controls-school,
.charactertable-controls div.controls-school,
.charactertable-controls div.controls-pool {
.charactertable-controls div.controls-pool {
flex-grow: 1;
flex-grow: 1;
text-align: center;
text-align: center;
}
}
}
}

Revision as of 12:34, 6 March 2024

.charactertable-controls {
  user-select: none;
  box-sizing: border-box;
  background-color: #f8f9fa;
  border: 1px solid #a2a9b1;
  padding: 0.5em 0.4em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
  line-height: normal;
}

.charactertable-controls div.controls > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 34px;
  margin: 0 1px;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.charactertable-controls .inactive {
  filter: grayscale(0.3);
  opacity: 0.4;
}

.charactertable-controls .controls-school .inactive {
  filter: grayscale(0.8);
  opacity: 0.35;
}

.charactertable-controls div.controls-class > span {
  width: 82px;
  height: 26px;
  border-width: 0 3px;
  border-style: solid;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #ecf5f9;
  transform: skewX(-10deg);
}

.charactertable-controls div.controls-class > span.class-striker {
  border-color: #f54d29;
}
.charactertable-controls div.controls-class > span.class-special {
  border-color: #0785fb;
}

.charactertable-controls div.controls-class > span {
  margin: 0 1px !important;
}

.charactertable-controls div.controls-school > span {
  margin: 0 -2px !important;
}

.charactertable-controls div.controls-attack > span,
.charactertable-controls div.controls-armor > span {
  border: 1px solid #2d4c72;
}

.charactertable-controls div.controls-pool > span {
  width: 82px;
  height: 26px;
  border-width: 0 3px;
  border-style: solid;
  border-radius: 8px;
  border-color: #112134;
  font-size: 16px;
  font-weight: bold;
  /* text-transform: uppercase; */
  background-color: #ecf5f9;
  transform: skewX(-10deg);
}

.charactertable-controls div.controls-pool {
  flex-grow: 1;
  text-align: right;
}

.charactertable-controls div.controls-school span.school-abydos > img {
  object-position: 0 3px;
}

@media (max-width: 1200px) {
  .charactertable-controls div.controls-school,
  .charactertable-controls div.controls-pool {
    flex-grow: 1;
    text-align: center;
  }
}