| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- table#teams{
- width: 60%;
- border-collapse: collapse;
- border: 0.1em solid #000000;
- display: inline-block;
- vertical-align: top;
- }
- table#teams th{
- border-top: 0.1em solid #000000;
- border-bottom: 0.1em solid #000000;
- }
- table#teams td{
- border-bottom: 0.1em solid #000000;
- text-align: left;
- padding: 0.2em;
- }
- table#teams td.odd{
- background-color: #00000033;
- }
- table#teams td.team{
- font-weight: bold;
- }
- table#teams td.description{
- font-size: 90%;
- }
- table#teams td.units{
- width: 12em;
- }
- table#teams td.units hr.frontline{
- display: block;
- width: 9em;
- margin: -0.6em 0 0.2em 0;
- color: #666666;
- }
- table#teams td.units div.monster_panel{
- font-size: 25%;
- margin-bottom: -2em;
- }
- table#teams td.units div.monster_panel img.leader{
- width: 5em;
- height: 5em;
- display: block;
- position: absolute;
- top: -1.7em;
- left: -0.7em;
- }
- div#unit_list{
- display: inline-block;
- width: 30%;
- vertical-align: top;
- text-align: center
- }
- div#unit_list table{
- border-collapse: collapse;
- border: 0.1em solid #000000;
- }
- div#unit_list table th{
- padding: 0.2em 0.4em;
- }
- div#unit_list table td{
- vertical-align: middle;
- text-align: center;
- margin: 0;
- }
- div#unit_list table td.odd{
- background-color: #00000033;
- }
- div#unit_list table div.monster_panel{
- font-size: 25%;
- margin: 2em 0 0 0;
- }
- div#unit_list table td.action input[type="button"]{
- font-size: 90%;
- padding: 0.1em;
- }
- section#monster article#profile div#monster_info{
- display: inline-block;
- vertical-align: top;
- max-width: 10em;
- }
- section#monster article#profile div#monster_info div#monster_details{
- display: block;
- font-size: 70%;
- }
- section#monster article#profile div#monster_info div#monster_details div#teams{
- text-align: left;
- }
- section#monster article#profile div#monster_info div#monster_details div#teams h4{
- margin: 0.2em auto;
- }
- section#monster article#profile table#stats{
- font-size: 90%;
- vertical-align: top;
- display: inline-block;
- border: 0.1em solid black;
- color: #ffffff;
- margin: auto;
- border-collapse: collapse;
- border-radius: 0.4em;
- }
- section#monster article#profile table#stats{
- font-size: 90%;
- vertical-align: top;
- display: inline-block;
- border: 0.1em solid black;
- color: #ffffff;
- margin: auto;
- border-collapse: collapse;
- border-radius: 0.4em;
- }
- section#monster article#profile table#stats th{
- font-weight: bold;
- background-color: #00000066;
- }
- section#monster article#profile table#stats td{
- font-weight: bold;
- background-color: #ffffff33;
- text-align: right;
- font-family: monospace;
- font-size: 120%;
- }
- section#monster article#profile table#stats td span.percent{
- margin: 0 0 0 -0.7em;
- font-size: 80%;
- }
- section#monster article#profile table#stats td, th{
- padding: 0.2em;
- border: 0.1em solid #000000;
- }
- section#monster article#profile table#stats td.extra{
- color: #aaaaff;
- }
- section#monster article#profile table#stats td.total{
- color: #f2c920;
- font-weight: bold;
- }
- section#monster article#profile div#artifacts{
- display: inline-block;
- }
- section#monster article#profile div#artifacts table.artifact{
- display: block;
- }
- section#parameters article{
- text-align: left;
- }
- section#parameters article input[type="number"]{
- width: 4em;
- text-align: right;
- -moz-appearance: textfield;
- }
- /*section#results table.rune{
- font-size: 50%;
- display: inline-block;
- }*/
- section#results table.stat_table{
- border-collapse: collapse;
- }
- section#results table.stat_table td.label{
- text-align: left;
- }
- section#results table.stat_table td.value{
- text-align: right;
- font-family: monospace;
- font-size: 110%;
- }
- section#results table.stat_table td.value span.variation{
- font-size: 90%;
- width: 3em;
- display: inline-block;
- text-align: left;
- padding-left: 0.5em;
- font-weight: bold
- }
- section#results table.stat_table td.value span.variation.increment{
- color: #00ff00;
- }
- section#results table.stat_table td.value span.variation.increment::before {
- content: "▲"; /*"▲";*/
- }
- section#results table.stat_table td.value span.variation.decrement{
- color: #ff0000;
- }
- section#results table.stat_table td.value span.variation.decrement::before {
- content: "▼"; /*"▼";
- }
|