Design and logic for user-facing site https://exmods.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

183 lines
2.5KB

  1. /* low priority fallback styles */
  2. body {
  3. background-color: #404040;
  4. color: #20c420;
  5. padding: 5%;
  6. }
  7. head {
  8. display: none;
  9. }
  10. h1 {
  11. text-align: center;
  12. padding-top: 2%;
  13. color: #20c420;
  14. }
  15. h2, h3, h4, h5 {
  16. text-align: center;
  17. color: #20c420;
  18. }
  19. .title {
  20. font-size: 120%;
  21. font-weight: bold;
  22. color: #20c420;
  23. }
  24. a {
  25. text-decoration:none;
  26. color: #208020;
  27. }
  28. ul {
  29. text-align: left;
  30. padding-left: 5%;
  31. }
  32. li {
  33. text-align: left;
  34. }
  35. span {
  36. display: inline-block;
  37. }
  38. iframe.iframe-player {
  39. display: block;
  40. text-align: center;
  41. margin: auto;
  42. }
  43. .text-content {
  44. width: 92%;
  45. text-align: default;
  46. line-height: 142%;
  47. font-size: 101%;
  48. display: inline-block;
  49. color: #202020;
  50. background-color: #D8DFD8;
  51. padding: 0.5%;
  52. padding-left: 1%;
  53. padding-right: 1%;
  54. margin: 4%;
  55. margin-top: 1%;
  56. border: 0;
  57. border-left: 4px;
  58. border-right: 4px;
  59. border-style: solid;
  60. border-color: #208020;
  61. }
  62. .tab { margin-left: 40px; }
  63. /* leaderboard style */
  64. .board {
  65. font-size: 200%;
  66. background-color: #e0e0e0;
  67. color: #111111;
  68. width: 100%;
  69. }
  70. .board-container {
  71. width: 99%;
  72. border: 5px;
  73. border-style: solid;
  74. border-color: #505050;
  75. text-align: left;
  76. }
  77. .board-entry {
  78. width: 100%;
  79. padding-top: 0.25%;
  80. padding-bottom: 0.25%;
  81. border: 0px;
  82. border-bottom: 4px;
  83. border-style: solid;
  84. border-color: #208020;
  85. }
  86. .board-rank {
  87. width: 15%;
  88. font-size: 170%;
  89. margin-left: 4%;
  90. text-align: left;
  91. vertical-align: middle;
  92. color: #208020;
  93. }
  94. .board-name {
  95. width: 55%;
  96. font-size: 130%;
  97. text-align: left;
  98. overflow: hidden;
  99. text-overflow: ellipsis;
  100. white-space: nowrap;
  101. vertical-align: middle;
  102. }
  103. .board-name-a {
  104. width: 100%;
  105. color: #20c420;
  106. }
  107. .board-score {
  108. width: 20%;
  109. margin-left: 4%;
  110. font-size: 100%;
  111. vertical-align: middle;
  112. color: #667766;
  113. }
  114. .board-header {
  115. margin-top: 0.25%;
  116. margin-bottom: 0.25%;
  117. margin-left: -0.25%;
  118. font-weight: bold;
  119. text-align: center;
  120. font-size: 150%;
  121. color: #112211;
  122. }
  123. /* player style */
  124. .player {
  125. font-size: 200%;
  126. background-color: #e0e0e0;
  127. color: #111111;
  128. width: 100%;
  129. }
  130. .player-container {
  131. width: 99%;
  132. text-align: left;
  133. border: 5px;
  134. border-style: solid;
  135. border-color: #505050;
  136. }
  137. .player-name {
  138. width: 75%;
  139. font-size: 300%;
  140. padding-left: 1%;
  141. padding-right: 1%;
  142. overflow: hidden;
  143. vertical-align: middle;
  144. }
  145. .player-link {
  146. width: 100%;
  147. }
  148. .player-avatar {
  149. width: 20%;
  150. text-align: center;
  151. margin: 0.5%;
  152. border-style: solid;
  153. border-color: #505050;
  154. border: 5px;
  155. border-right: 5px;
  156. vertical-align: middle;
  157. }