123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- body {
- width: 99%;
- padding-top: 4px;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- }
- .hide {
- display: none !important;
- }
- .container {
- width: 100%;
- display: flex;
- flex-flow: row nowrap;
- justify-content: space-between;
- align-items: flex-start;
- }
- .start-justified {
- justify-content: flex-start;
- }
- .panel {
- display: flex;
- flex-flow: column nowrap;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .config {
- width: 100%;
- margin-bottom: 16px;
- }
- .center-aligned {
- align-items: center;
- }
- .center-justified {
- justify-content: center;
- }
- .math-section {
- border: 4px solid #222;
- padding: 1em;
- padding-bottom: 0;
- min-width: 90%;
- align-self: center;
- }
- .qvecs {
- align-items: flex-end;
- }
- #obj-fn {
- display: inline-flex;
- flex-flow: column nowrap;
- justify-content: center;
- min-height: 64px;
- }
- .padded {
- padding-left: 16px;
- padding-right: 16px;
- }
- .title {
- font-weight: 1000;
- }
- .control {
- height: 32px;
- align-items: flex-end;
- }
- .pkmn-list {
- list-style-type: none;
- padding: 0;
- margin: 0;
- margin-top: 16px;
- }
- .bypkmn {
- margin-top: 16px;
- padding-right: 8px;
- min-width: 500px;
- }
- /* Pokemon Tile */
- .pokemon_tile {
- padding-top: 0.5em;
- padding-bottom: 0.5em;
- display: flex;
- flex-flow: row nowrap;
- justify-content: flex-start;
- align-items: flex-start;
- width: 100%;
- }
- .pokemon_tile-image-wrapper {
- width: 60px;
- height: 50px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .pokemon_tile-info_panel {
- display: flex;
- flex-flow: column nowrap;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .pokemon_tile-pokemon_name {
- font-weight: 1000;
- }
- .pokemon_tile-results {
- display: flex;
- }
- .pokemon_tile-labels {
- text-align: right;
- margin-left: 16px;
- margin-right: 4px;
- display: flex;
- flex-flow: column nowrap;
- }
- .pokemon_tile-score_column {
- margin-left: 4px;
- min-width: 6em;
- display: flex;
- flex-flow: column nowrap;
- }
- .pokemon_tile-no_flex {
- flex: 0 0 auto;
- }
- .pokemon_tile-hex_column {
- flex: 0 1 10%;
- margin-left: 8px;
- display: flex;
- flex-flow: column nowrap;
- }
- .pokemon_tile-hex_color {
- flex: 1;
- padding: 0 0.5em 0 0.5em;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- font-size: 10px;
- }
- .pokemon_tile-vector_column {
- margin-left: 4px;
- display: flex;
- flex-flow: column nowrap;
- }
|