Template:Sandbox3/styles.css: Difference between revisions

From Archon Arcana - The KeyForge Wiki
No edit summary
No edit summary
Line 42: Line 42:
   border-bottom: 3px solid #bababa;
   border-bottom: 3px solid #bababa;
   background-image: linear-gradient(90deg, #12420a, #1d6b11);
   background-image: linear-gradient(90deg, #12420a, #1d6b11);
   font-size: 1.5em;
   font-size: 1.3em;
   font-weight: 600;
   font-weight: 600;
   color: white;
   color: white;
Line 54: Line 54:
   border-bottom: 3px solid #bababa;
   border-bottom: 3px solid #bababa;
   background-image: linear-gradient(90deg, #073c45, #0b5866);
   background-image: linear-gradient(90deg, #073c45, #0b5866);
     font-size: 1.5em;
     font-size: 1.3em;
   font-weight: 600;
   font-weight: 600;
   color: white;
   color: white;
Line 66: Line 66:
   border-bottom: 3px solid #bababa;
   border-bottom: 3px solid #bababa;
   background-image: linear-gradient(90deg, #1e0a43, #2d0f63);
   background-image: linear-gradient(90deg, #1e0a43, #2d0f63);
     font-size: 1.5em;
     font-size: 1.3em;
   font-weight: 600;
   font-weight: 600;
   color: white;
   color: white;
Line 167: Line 167:
   padding: 12px 8px 8px 15px;
   padding: 12px 8px 8px 15px;
   border-bottom:5px solid #a0a0a0;
   border-bottom:5px solid #a0a0a0;
   font-size: 1.7em;
   font-size: 1.5em;
   margin-top:10px;
   margin-top:10px;
   margin-bottom:5px;
   margin-bottom:5px;

Revision as of 21:31, 5 May 2020

.outer {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
}

.deckViewer {
  display: flex;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  justify-content: space-between;
}

.archonSolo {
  flex: 1;
  min-width: 310px;
  box-sizing: border-box;
  margin: 5px;
}

.archonAdaptive {
  flex: 1;
  min-width: 310px;
  box-sizing: border-box;
  margin: 5px;

}

.archonTriad {
  flex: 3;
  min-width: 50%;
  box-sizing: border-box;
  margin: 5px;
}

.archonSolo .variantName {
  background-color: #1d6b11;
  border-bottom: 3px solid #bababa;
  background-image: linear-gradient(90deg, #12420a, #1d6b11);
  font-size: 1.3em;
  font-weight: 600;
  color: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
    padding: 8px 8px 5px 15px;
}

.archonAdaptive .variantName {
  background-color: #0b5866;
  border-bottom: 3px solid #bababa;
  background-image: linear-gradient(90deg, #073c45, #0b5866);
    font-size: 1.3em;
  font-weight: 600;
  color: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 8px 8px 5px 15px;
}

.archonTriad .variantName {
  background-color: #2d0f63;
  border-bottom: 3px solid #bababa;
  background-image: linear-gradient(90deg, #1e0a43, #2d0f63);
    font-size: 1.3em;
  font-weight: 600;
  color: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 8px 8px 5px 15px;
}

.deckName {
  font-size: 1em;
  padding: 5px 5px 3px 8px;
}

.deckSet {
  font-size: 1em;
  padding: 2px 5px 3px 8px;
}

.deckLink {
  font-size: 1em;
  padding: 2px 5px 8px 8px;
  border-bottom: 1px solid #bababa;
}

.deckImage {
  padding: 8px 5px 8px 5px;
  text-align: center;
  box-sizing: border-box;
}

.deckImage img {
  border-radius: 15px;
  filter: drop-shadow(0 0 0.2rem #505050);
  width: 270px;
  height: auto;
}

.triadDecks {
  display: flex;
  flex-wrap: wrap;
}

.decklist {
  flex: 1;
  min-width:250px;
}





/* toggle display */

.hide {
  display: none
}

.accordion {
  list-style: none;
  padding: 0;
  margin-left: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.accordion li,
.accordion ul {
  margin-left: 0px;
}

.deckpreview {
  width: 100%;
  display: block;
  height: auto;
  cursor: pointer;
  text-align: left;
  transition: background .3s ease;
  box-sizing: border-box;
  background-color: #efefef;
}

.deckpreview:hover {
  background: #dedcd3;
  box-sizing: border-box;
}

.teamName {
  width: 100%;
  display: block;
  height: auto;
  cursor: pointer;
  text-align: left;
  transition: background .3s ease;
  box-sizing: border-box;
  background-color: #303030;
  background-image: linear-gradient(90deg,#303030,#505050);
  color: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 12px 8px 8px 15px;
  border-bottom:5px solid #a0a0a0;
  font-size: 1.5em;
  margin-top:10px;
  margin-bottom:5px;
  font-weight:600;
}

.teamName:hover {
  background: #101010;
  box-sizing: border-box;
}


ul.accordion .inner {
  text-align: left;
  overflow: hidden;
  max-height: 0;
  transition: max-height .6s ease;
}

.accordion input[type="checkbox"]:checked+li>.inner {
  max-height: 3000px;
}

.spacer {
  height: 0px;
  display: block;
}