Template:Sandbox3/styles.css: Difference between revisions
From Archon Arcana - The KeyForge Wiki
Coffeesaga (talk | contribs) No edit summary |
Coffeesaga (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
body { | |||
font-family: arial; | |||
font-size: .9em; | font-size: .9em; | ||
} | } | ||
.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- | 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; | |||
width: | margin: 5px; | ||
box-sizing:border-box; | |||
} | } | ||
.archonSolo .header, | |||
.archonAdaptive .header, | |||
.archonTriad .header { | |||
font-size: 1.5em; | |||
padding: 8px 8px 5px 15px; | |||
font-weight: 600; | |||
color: white; | |||
border-top-left-radius: 20px; | |||
border-top-right-radius: 20px; | |||
} | } | ||
.archonSolo .header { | |||
background-color: #1d6b11; | |||
border-bottom: 3px solid #bababa; | |||
background-image: linear-gradient(90deg, #12420a, #1d6b11) | |||
} | } | ||
.archonAdaptive .header { | |||
background-color: #0b5866; | |||
border-bottom: 3px solid #bababa; | |||
background-image: linear-gradient(90deg, #073c45, #0b5866) | |||
} | } | ||
.archonTriad .header { | |||
background-color: #2d0f63; | |||
border-bottom: 3px solid #bababa; | |||
background-image: linear-gradient(90deg, #1e0a43, #2d0f63) | |||
} | } | ||
.deckName { | |||
font-size: 1em; | |||
padding: 1px; | padding: 5px 5px 3px 8px; | ||
border-top: 1px solid #bababa; | |||
} | } | ||
.deckSet { | |||
font-size: 1em; | |||
font- | 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; | |||
width: | |||
} | } | ||
.triadDecks { | |||
display: flex; | |||
flex-wrap: wrap; | |||
} | } | ||
.decklist { | |||
flex: 1; | |||
} | } | ||
/* 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 { | |||
background-image: linear-gradient( | 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.7em; | |||
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; | |||
} | } |
Revision as of 21:02, 5 May 2020
body { font-family: arial; font-size: .9em; } .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 .header, .archonAdaptive .header, .archonTriad .header { font-size: 1.5em; padding: 8px 8px 5px 15px; font-weight: 600; color: white; border-top-left-radius: 20px; border-top-right-radius: 20px; } .archonSolo .header { background-color: #1d6b11; border-bottom: 3px solid #bababa; background-image: linear-gradient(90deg, #12420a, #1d6b11) } .archonAdaptive .header { background-color: #0b5866; border-bottom: 3px solid #bababa; background-image: linear-gradient(90deg, #073c45, #0b5866) } .archonTriad .header { background-color: #2d0f63; border-bottom: 3px solid #bababa; background-image: linear-gradient(90deg, #1e0a43, #2d0f63) } .deckName { font-size: 1em; padding: 5px 5px 3px 8px; border-top: 1px solid #bababa; } .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; } /* 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.7em; 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; }