Advertisement
TheRockettek

Untitled

Dec 17th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. .page {
  2. color: #ffffff !important;
  3. }
  4. p {
  5. color: #ffffff !important;
  6. }
  7. html {
  8. background-color: #2C2F33 !important;
  9. }
  10. .status.green {
  11. color: #00ff3c !important;
  12. }
  13. .column {
  14. margin: auto !important;
  15. }
  16. .btn-blue {
  17. background: #495ea9 !important;
  18. }
  19. .btn-orange {
  20. background: #495ea9 !important;
  21. }
  22. body {
  23. color: #ffffff !important;
  24. }
  25. .lib {
  26. color: #ffffff !important;
  27. }
  28. .bot-name {
  29. color: #ffffff !important;
  30. }
  31. .color-medium-blue {
  32. color: #495ea9 !important;
  33. }
  34. #menu {
  35. background: #212428 !important;
  36. }
  37. .longdescription .content {
  38. box-shadow: none !important;
  39. }
  40. .longdescription {
  41. border: none !important;
  42. }
  43. .owners {
  44. border: none !important;
  45. }
  46. #bot-details-page #details .container {
  47. border: none !important;
  48. }
  49. @-webkit-keyframes float-landing {
  50. 0% {
  51. -webkit-transform: translate3d(0,0px,0);
  52. transform: translate3d(0,-20px,0)
  53. }
  54. to {
  55. -webkit-transform: translate3d(0,20px,0);
  56. transform: translate3d(0,0px,0)
  57. }
  58. }
  59. @keyframes float-landing {
  60. 0% {
  61. -webkit-transform: translate3d(0,0px,0);
  62. transform: translate3d(0,-20px,0)
  63. }
  64. to {
  65. -webkit-transform: translate3d(0,20px,0);
  66. transform: translate3d(0,0px,0)
  67. }
  68. }
  69. #bot-details-page .bot-img {
  70. background: transparent !important;
  71. }
  72. #prefix {
  73. color: #ffffff !important;
  74. }
  75. .voted {
  76. background-color: #495ea9 !important;
  77. color: #ffffff !important;
  78. }
  79. .btn-like {
  80. background: white;
  81. color: #495ea9;
  82. }
  83. #bot-details-page .bot-img img {
  84. border-radius: 100% !important;
  85. margin-top: 10px !important;
  86. margin-bottom: 10px !important;
  87. border-top: 40px !important;
  88. border-bottom: 40px !important;
  89. -webkit-animation-name: float-landing;
  90. animation-name: float-landing;
  91. -webkit-animation-duration: 1.5s;
  92. animation-duration: 1.5s;
  93. -webkit-animation-iteration-count: infinite;
  94. animation-iteration-count: infinite;
  95. -webkit-animation-direction: alternate;
  96. animation-direction: alternate;
  97. -webkit-animation-timing-function: ease-in-out;
  98. animation-timing-function: ease-in-out
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement