Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.98 KB | None | 0 0
  1. /*.tier {
  2.     margin-top: 8px;
  3.     margin-bottom: 0px;
  4. }*/
  5.  
  6. .hiddenPower {
  7.     padding-left: 4px;
  8.     font-weight: bold;
  9. }
  10.  
  11. /* Top 5 pokemon in the tier page */
  12. .topPokemon {
  13.     font-weight: bold;
  14.     margin-bottom: 0px;
  15. }
  16.  
  17. /* Lower pokemon in the tier page */
  18. .lowPokemon {
  19.     margin-bottom: 0px;
  20. }
  21.  
  22. /* Top of a tier page */
  23. .tierBattleNumber {
  24. }
  25.  
  26. /* Top of a pokemon page */
  27. .pokemonBattleNumber {
  28.     /*text-align: center;*/
  29. }
  30.  
  31. /* Ranks within a pokemon page */
  32. .pokemonRank {
  33.     font-weight: bold;
  34. }
  35.  
  36. /* Styles <ul> */
  37. .moveList {
  38. }
  39.  
  40. /* Styles <li> */
  41. .move {
  42. }
  43.  
  44. /* Level, item, ability */
  45. .pokemonTitle {
  46.     margin-bottom: 0px;
  47. }
  48.  
  49. /* Evs, ivs, nature */
  50. .advanced {
  51.     padding-top: 0px;
  52.     padding-bottom: 0px;
  53.     margin-top: 0px;
  54.     margin-bottom: 0px;
  55.     font-size: 0.9em;
  56. }
  57.  
  58. .smallPercent {
  59.     padding-left: 4px;
  60.     font-size: 0.7em;
  61. }
  62.  
  63. .button {
  64.     padding-top: 0px;
  65.     padding-bottom: 0px;
  66.     margin: 0px;
  67. }
  68.  
  69. .normal {
  70.     color: #a8a878;
  71. }
  72. .fighting {
  73.     color: #c03028;
  74. }
  75. .flying {
  76.     color: #a890f0;
  77. }
  78. .poison {
  79.     color: #a040a0;
  80. }
  81. .ground {
  82.     color: #e0c068;
  83. }
  84. .rock {
  85.     color: #b8a038;
  86. }
  87. .bug {
  88.     color: #a8b820;
  89. }
  90. .ghost {
  91.     color: #705898;
  92. }
  93. .steel {
  94.     color: #b8b8d0;
  95. }
  96. .fire {
  97.     color: #f08030;
  98. }
  99. .water {
  100.     color: #6890f0;
  101. }
  102. .grass {
  103.     color: #78c850;
  104. }
  105. .electric {
  106.     color: #f8d030;
  107. }
  108. .psychic {
  109.     color: #f85888;
  110. }
  111. .ice {
  112.     color: #98d8d8;
  113. }
  114. .dragon {
  115.     color: #7038f8;
  116. }
  117. .dark {
  118.     color: #705848;
  119. }
  120. .curse {
  121.     color: #68a090;
  122. }
  123.  
  124. .globaltable th, .globaltable td{
  125.     background: #dddddd;
  126.     /*margin: 0;
  127.     padding: 0;
  128.     border-width: 5px;
  129.     border-color: #dddddd;*/
  130. }
  131.  
  132.  
  133. /* Links */
  134. a {
  135.     text-decoration : none;
  136.     color : #0ca0dd;
  137. }
  138. a:hover {
  139.     color : #0462dd;
  140.     text-shadow : 0px 0px 3px #0462dd;
  141. }
  142. a img {
  143.     border : 0px;
  144. }
  145.  
  146. header {
  147.     display : block;
  148.     margin : 0px auto;
  149.     /*text-align: center;*/
  150.     font-size: 1.2em;
  151.     font-weight: bold;
  152. }
  153.  
  154. h1 {
  155.     text-align: center;
  156. }
  157.  
  158. body {
  159.    
  160. }
  161.  
  162. div {
  163.     margin: 0px;
  164. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement