Advertisement
Guest User

Untitled

a guest
Jun 15th, 2023
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.05 KB | None | 0 0
  1. body {
  2.   background: #202124;
  3.   color: #e8eaed;
  4. }
  5.  
  6. * {
  7.   font-family: 'Arial' !important;
  8.   font-size: 16px;
  9. }
  10.  
  11. #hnmain {
  12.   background: transparent !important;
  13. }
  14.  
  15. .default {
  16.   background: #202124;
  17.   padding: 6px 0 !important;
  18.   position: relative;
  19. }
  20.  
  21. .c00,
  22. .c00 a:link {
  23.   color: #ddd;
  24. }
  25.  
  26. a {
  27.   color: #8ab4f8 !important;
  28. }
  29.  
  30. a:visited {
  31.   color: #c58af9 !important;
  32. }
  33.  
  34. .pagetop a {
  35.   color: #fff !important;
  36. }
  37.  
  38. .reply a,
  39. .comhead a,
  40. .subtext a {
  41.   color: #9aa0a6 !important;
  42. }
  43.  
  44.  
  45. .reply p {
  46.   margin-top: 8px;
  47. }
  48. .reply u {
  49.   text-decoration: none !important;
  50. }
  51. .reply a {
  52.   font-size: 13px !important;
  53.   text-decoration: none !important;
  54. }
  55.  
  56. .comhead * {
  57.   font-size: 13px !important;
  58. }
  59.  
  60.  
  61. .votearrow {
  62.   background: none;
  63.   margin: 0;
  64.   width: 0;
  65.   height: 0;
  66.   border-left: 5px solid transparent;
  67.   border-right: 5px solid transparent;
  68.   border-bottom: 7px solid #9aa0a6;
  69.   margin: 3px;
  70.   margin-top: 17px;
  71.   display: none;
  72. }
  73.  
  74. form[action="comment"] textarea {
  75.   background: #303134;
  76.   border: none;
  77.   border-radius: 7px;
  78.   color:#ddd;
  79. }
  80.  
  81. form[action="comment"] input {
  82.   background: #303134;
  83.   border-radius: 6px;
  84.   color: #ddd;
  85.   padding: 8px 14px;
  86.   border: 1px solid #454649;
  87. }
  88.  
  89. .comment-tree {
  90.   position: relative;
  91.   border-spacing: 0;
  92.   border-collapse: collapse;
  93. }
  94.  
  95. .comment-tree table {
  96.   border-spacing: 0;
  97.   border-collapse: collapse;
  98. }
  99.  
  100. .comment-tree tr {
  101.   margin: 0;
  102. }
  103.  
  104. .comment-tree tr td {
  105.   padding: 0;
  106.   margin: 0;
  107. }
  108.  
  109. [indent]:before {
  110.   content: ' ';
  111.   top: 0;
  112.   position: absolute;
  113.   width: 1px;
  114.   background: #3c4043;
  115.   height: 100%;
  116.   z-index: -2;
  117. }
  118.  
  119. [indent="1"]:before { margin-left: 40px; }
  120. [indent="2"]:before { margin-left: 80px; }
  121. [indent="3"]:before { margin-left: 120px; }
  122. [indent="4"]:before { margin-left: 160px; }
  123. [indent="5"]:before { margin-left: 200px; }
  124. [indent="6"]:before { margin-left: 240px; }
  125. [indent="7"]:before { margin-left: 280px; }
  126. [indent="8"]:before { margin-left: 320px; }
  127.  
  128. #hnmain > tbody > tr:last-child {
  129.   display: none;
  130. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement