nearest.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. body {
  2. width: 100vw;
  3. padding-top: 4px;
  4. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  5. }
  6. .hide {
  7. display: none !important;
  8. }
  9. .container {
  10. width: 100%;
  11. display: flex;
  12. flex-flow: row nowrap;
  13. justify-content: space-between;
  14. align-items: flex-start;
  15. }
  16. .panel {
  17. display: flex;
  18. flex-flow: column nowrap;
  19. justify-content: flex-start;
  20. align-items: flex-start;
  21. }
  22. .config {
  23. width: 100%;
  24. margin-bottom: 16px;
  25. }
  26. .center-aligned {
  27. align-items: center;
  28. }
  29. #obj-fn {
  30. display: inline-flex;
  31. flex-flow: column nowrap;
  32. justify-content: center;
  33. min-height: 64px;
  34. }
  35. .padded {
  36. padding-left: 16px;
  37. padding-right: 16px;
  38. }
  39. .margined {
  40. margin-left: 8px;
  41. margin-right: 8px;
  42. }
  43. .title {
  44. font-weight: 1000;
  45. }
  46. .bycolor {
  47. flex: 2;
  48. }
  49. .bycolor_l1 {
  50. justify-content: flex-start;
  51. align-items: flex-end;
  52. }
  53. .bycolor_l2 {
  54. padding-top: 16px;
  55. justify-content: flex-start;
  56. }
  57. .control {
  58. height: 32px;
  59. align-items: flex-end;
  60. }
  61. .pokemon {
  62. display: flex;
  63. flex-flow: row nowrap;
  64. justify-content: space-between;
  65. align-items: flex-end;
  66. width: 400px;
  67. height: 50px;
  68. }
  69. .color-tile {
  70. width: 50px;
  71. height: 32px;
  72. font-size: 10px;
  73. text-align: center;
  74. display: inline-flex;
  75. align-items: center;
  76. margin-right: 4px;
  77. }
  78. .pokemon_text {
  79. flex: 1;
  80. padding-left: 4px;
  81. text-align: left;
  82. }
  83. .pkmn-list {
  84. list-style-type: none;
  85. padding: 0;
  86. margin: 0;
  87. margin-top: 16px;
  88. }
  89. .bypkmn {
  90. border-top: 4px solid #222;
  91. border-right: 4px solid #222;
  92. margin-top: 32px;
  93. padding-top: 8px;
  94. padding-right: 8px;
  95. min-width: 500px;
  96. }
  97. /* Pokemon Tile */
  98. .pokemon_tile {
  99. padding-top: 0.5em;
  100. padding-bottom: 0.5em;
  101. display: flex;
  102. flex-flow: row nowrap;
  103. justify-content: flex-start;
  104. align-items: flex-start;
  105. min-width: 500px;
  106. width: 100%;
  107. }
  108. .pokemon_tile-info_panel {
  109. display: flex;
  110. flex-flow: column nowrap;
  111. justify-content: flex-start;
  112. align-items: flex-start;
  113. }
  114. .pokemon_tile-pokemon_name {
  115. font-weight: 1000;
  116. }
  117. .pokemon_tile-results {
  118. display: flex;
  119. }
  120. .pokemon_tile-labels {
  121. text-align: right;
  122. margin-left: 16px;
  123. margin-right: 4px;
  124. display: flex;
  125. flex-flow: column nowrap;
  126. }
  127. .pokemon_tile-score_column {
  128. margin-left: 4px;
  129. min-width: 10em;
  130. display: flex;
  131. flex-flow: column nowrap;
  132. }
  133. .pokemon_tile-no_flex {
  134. flex: 0 0 auto;
  135. }
  136. .pokemon_tile-hex_column {
  137. flex: 0 1 10%;
  138. margin-left: 8px;
  139. display: flex;
  140. flex-flow: column nowrap;
  141. }
  142. .pokemon_tile-hex_color {
  143. flex: 1;
  144. padding: 0 0.5em 0 0.5em;
  145. display: inline-flex;
  146. align-items: center;
  147. justify-content: center;
  148. font-size: 10px;
  149. }
  150. .pokemon_tile-vector_column {
  151. margin-left: 4px;
  152. display: flex;
  153. flex-flow: column nowrap;
  154. }