Advertisement
J2897

Stylish - Study Stack - Dark

May 20th, 2020
2,766
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.37 KB | None | 0 0
  1. /*
  2.     This will make the Study Stack site very dark if you use Stylish...
  3.     Study Stack site: https://www.studystack.com/
  4.     Chrome Extension: https://chrome.google.com/webstore/detail/stylish-custom-themes-for/fjnbnpbmkenffdnngjfgmeleoegfcffe
  5. */
  6.  html {
  7.     color: #67cdfb;
  8.     background: #1f1f1f;
  9. }
  10. a {
  11.     color: #8BC34A;
  12. }
  13. #clickToFlip {
  14.     color: white;
  15.     background-color: black;
  16. }
  17. .primaryBackground {
  18.     background-color: darkslategray;
  19. }
  20. .infoMessage {
  21.     color: white;
  22.     background-color: black !important;
  23. }
  24. #fc_container {
  25.     background-color: darkslategray;
  26. }
  27. #currentCard {
  28.     color: white;
  29.     background-color: black !important;
  30. }
  31. #theTable td {
  32.     background-color: #1f1f1f;
  33. }
  34. #theTable th {
  35.     color: black;
  36.     background-color: #2095f0;
  37. }
  38. .linedCard {
  39.     color: white;
  40.     background: black !important;
  41. }
  42. .linedCardSmall {
  43.     color: white;
  44.     background: black !important;
  45. }
  46. .action {
  47.     color: #f5f5f5;
  48. }
  49. .evenRow {
  50.     background-color: #203535;
  51. }
  52. .oddRow {
  53.     background-color: #1f1f1f;
  54. }
  55. /* Delete everything below here if the site gets messed up. */
  56.  #tabContent {
  57.     background: darkslategray !important;
  58. }
  59. table.tablesorter tbody td {
  60.     color: black;
  61.     background-color: #bbdaf7;
  62. }
  63. table.tablesorter thead tr th, table.tablesorter tfoot tr th {
  64.     background-color: #1f1f1f;
  65.     border: 1px solid #bbdaf7;
  66. }
  67. table.tablesorter {
  68.     background-color: #1f1f1f00;
  69. }
  70. .logStack a, .logStack a:visited {
  71.     color: #6c8692;
  72. }
  73. .boxedForm {
  74.     border: 1px solid #959492;
  75. }
  76. .article-white {
  77.     background: blue;
  78. }
  79. table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
  80.     background-color: #3b5998;
  81. }
  82. table.tablesorter {
  83.     font-family: monospace;
  84. }
  85. .headerMessage {
  86.     color: white;
  87.     background-color: red;
  88.     border-color: red;
  89. }
  90. .errorMessage {
  91.     color: white;
  92.     background-color: red;
  93.     border-color: red;
  94. }
  95. #incorrectBox {
  96.     top: 301px;
  97.     left: 8px;
  98.     background-color: red;
  99. }
  100. #correctBox {
  101.     top: 110px;
  102.     left: 8px;
  103.     background-color: forestgreen;
  104.     color: white;
  105. }
  106. #remainingBox {
  107.     top: 190px;
  108.     left: 648px;
  109.     background-color: royalblue;
  110.     color: white;
  111. }
  112. .cardBox {
  113.     height: 50px;
  114.     line-height: 50px;
  115. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement