Guest User

Untitled

a guest
Jun 18th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. * {
  2. text-shadow: none;
  3. }
  4.  
  5. input.ui-slider-input {
  6. margin-left: 100%;
  7. position: relative;
  8. }
  9.  
  10. .stats {
  11. padding-top: 12px;
  12. position: relative;
  13. left: 50px;
  14. padding-left: 0;
  15. }
  16.  
  17. .form-group {
  18. margin-bottom: 0px;
  19. }
  20.  
  21. .parts {
  22. font-size: 12px !important;
  23. padding-left: 50px;
  24. }
  25.  
  26. th {
  27. border-bottom: 1px solid #d6d6d6;
  28. }
  29.  
  30. tr:nth-child(even) {
  31. background: #e9e9e9;
  32. }
  33.  
  34. .header {
  35. margin-bottom: 10px;
  36. }
  37.  
  38. .header h1 {
  39. margin-bottom: 10px;
  40. }
  41.  
  42. .header p {
  43. font-size: 16px;
  44. margin-bottom: 0;
  45. }
  46.  
  47. .combinations {
  48. font-size: 16px;
  49. padding-top: 20px;
  50. margin-bottom: -50px;
  51. }
  52.  
  53. table.sortable thead {
  54. background-color:#eee;
  55. color:#666666;
  56. font-weight: bold;
  57. cursor: pointer;
  58. }
  59.  
  60. table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
  61. content: " 25B425BE"
  62. }
  63.  
  64. div {
  65. transition: 0.3s;
  66. }
  67.  
  68. div.dark {
  69. background: #262626;
  70. color: #fff;
  71. }
  72.  
  73. div h1 {
  74. transition: 0.3s;
  75. color: black;
  76. }
  77.  
  78. div.dark h1 {
  79. transition: 0.3s;
  80. color: white;
  81. }
  82.  
  83. div p {
  84. transition: 0.3s;
  85. color: black;
  86. }
  87.  
  88. div.dark label {
  89. transition: 0.3s;
  90. color: white;
  91. }
  92.  
  93. div .btn {
  94. transition: 0.3s;
  95. color: black;
  96. text-shadow: none;
  97. background: none;
  98. }
  99.  
  100. div.dark .btn {
  101. transition: 0.3s;
  102. color: white;
  103. background: #262626;
  104. text-shadow: none;
  105. }
  106.  
  107. div.dark .btn:hover {
  108. background: #464646;
  109. color: white;
  110. text-shadow: none;
  111. }
  112.  
  113. div .col-form-label {
  114. transition: 0.3s;
  115. color: black;
  116. text-shadow: none;
  117. }
  118.  
  119. div.dark .col-form-label {
  120. transition: 0.3s;
  121. color: white;
  122. background: #262626;
  123. text-shadow: none;
  124. }
  125.  
  126. div.dark .col-form-label:hover {
  127. background: #464646;
  128. color: white;
  129. text-shadow: none;
  130. }
  131.  
  132. div.dark form#frm1 .col-form-label:hover {
  133. background: #262626;
  134. color: white;
  135. }
  136.  
  137. div.dark form#frm1 .col-form-label {
  138. background: none;
  139. }
  140.  
  141. div.dark th:hover {
  142. background: #262626;
  143. }
  144.  
  145. div.dark th {
  146. background: #101010;
  147. transition: 0.3s;
  148. color: white;
  149. }
  150.  
  151. div.dark table tr:nth-child(even) {
  152. background: #101010;
  153. color: #fff;
  154. transition: 0.3s;
  155. }
  156.  
  157. div table tr:nth-child(even) {
  158. color: #262626;
  159. transition: 0.3s;
  160. }
  161.  
  162. div table tr:nth-child(odd) {
  163. color: #262626;
  164. transition: 0.3s;
  165. }
  166.  
  167. div.dark table tr:nth-child(odd) {
  168. background: #262626;
  169. color: #fff;
  170. transition: 0.3s;
  171. }
  172.  
  173. div th:hover {
  174. background: #dfdede;
  175. }
  176.  
  177. div.dark .form-control {
  178. transition: 0.3s;
  179. color: white;
  180. background: #262626;
  181. text-shadow: none;
  182. }
  183.  
  184. div .form-control {
  185. transition: 0.3s;
  186. color: black;
  187. text-shadow: none;
  188. }
  189.  
  190. div.dark p {
  191. transition: 0.3s;
  192. color: white;
  193. }
  194.  
  195. div.dark table {
  196. color: black;
  197. transition: 0.3s;
  198. }
  199.  
  200. ul {
  201. position: absolute;
  202. top: 20px;
  203. right: 20px;
  204. margin: 0;
  205. padding: 0;
  206. width: 100px;
  207. height: 30px;
  208. z-index: 1;
  209. border: 1px solid #000;
  210. cursor: pointer;
  211. overflow: hidden;
  212. border-radius: 10px;
  213. }
  214.  
  215. ul.active {
  216. border-color: #fff;
  217. }
  218.  
  219. ul li {
  220. list-style: none;
  221. width: 100%;
  222. height: 60px;
  223. text-align :center;
  224. text-transform: uppercase;
  225. transition: 0.3s;
  226. }
  227.  
  228. ul.active li {
  229. transform: translateY(-30px);
  230. }
  231.  
  232. ul li span {
  233. display: block;
  234. width: 100%;
  235. height: 30px;
  236. line-height: 30px;
  237. color: #262626;
  238. background: #fff;
  239. }
  240.  
  241. ul li span:nth-child(1) {
  242. background: #262626;
  243. color: #fff;
  244. }
  245.  
  246. ul li span:nth-child(1):hover {
  247. background: #fff;
  248. color: #262626;
  249. transition: 0.3s;
  250. }
  251.  
  252. ul li span:nth-child(2):hover {
  253. background: #262626;
  254. color: #fff;
  255. transition: 0.3s;
  256. }
Add Comment
Please, Sign In to add comment