Advertisement
Guest User

Untitled

a guest
Jun 6th, 2023
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.02 KB | None | 0 0
  1. body[id] {
  2.     padding-top: 56px !important;
  3. }
  4.  
  5. body, .navbar-light, .navbar-dark, .card, .modal-content, .comment-write textarea, #root > div.App, .container, .container-fluid {
  6.     background-color: #0a0d10 !important;
  7. }
  8. .navbar {padding: 0}
  9. .navbar > .container-fluid {padding: 8px 6px !important}
  10.  
  11. @keyframes transition-up {
  12.     from {
  13.         top: -2px;
  14.     }
  15.     to {
  16.         top: -200px;
  17.     }
  18. }
  19.  
  20. .srd {
  21.     position: fixed;
  22.     top: -2px;
  23.     left: calc(50% - 350px / 2);
  24.     z-index: 1;
  25.     width: 350px;
  26.     animation-name: transition-up;
  27.     animation-duration: 1s;
  28.     animation-iteration-count: 1;
  29.     animation-fill-mode: forwards;
  30.     animation-delay: 2000ms;
  31.     border: 1px solid #8d8d8d;
  32.     border-bottom-left-radius: 40px;
  33.     border-bottom-right-radius: 40px;
  34. }
  35. .site-banner, .site-banner-hole {
  36.     width: 100%;
  37.     max-height: 200px !important;
  38.     object-fit: cover;
  39. }
  40.  
  41.  
  42. .post-meta, .comment-anchor .user-info {
  43. /* background-color: #1c1f23;
  44.     border: 1px solid #13181e;
  45.     border-radius: 4px;
  46. */
  47.  
  48.     overflow: visible;
  49.     padding: 4px 0px;
  50. }
  51.  
  52. .posts .post-meta > div:first-child,
  53. #post-root .post-meta,
  54. .comment-anchor .user-info {
  55.     display: flex;
  56.     align-items: center;
  57. }
  58.  
  59. .post-meta .user-name,
  60. .comment-anchor .user-name {
  61.     width: min-content;
  62.     height: min-content;
  63.     display: grid;
  64.     grid-auto-flow: column;
  65.     grid-auto-columns: min-content min-content;
  66.     grid-column-gap: 8px;
  67.     align-content: center;
  68. }
  69.  
  70. .profile-pic-30-wrapper {
  71.     margin: 0 !important;
  72. }
  73.  
  74. .profile-pic-30-wrapper .profile-pic-30 {
  75.         position: absolute;
  76. }
  77. .profile-pic-30-wrapper .profile-pic-30-hat {
  78.     position: relative;
  79. }
  80.  
  81. .user-name > div + span {
  82.     text-align: center;
  83.     align-self: center;
  84. }
  85.  
  86. .fa-badge-check {
  87.     position: relative;
  88.     left: 8px;
  89.     top: -10px;
  90.     z-index: 100;
  91.  
  92. }
  93.  
  94. .post-meta > div > span + span + span {
  95.     color: #666666;
  96. }
  97.  
  98.  
  99.  
  100.  
  101. .card-block {
  102.     display: flex;
  103.     flex-direction: column;
  104. }
  105.  
  106. .card-block .card-title {
  107.     order: 1;
  108. }
  109. .card-block > * {
  110.     order: 2
  111. }
  112.  
  113. .card {
  114.     border: 1px solid #13181e !important;
  115.     border-radius: 4px !important;
  116.     margin-bottom: 4px;
  117.     padding: 0px 8px 8px 4px !important;
  118. }
  119. /* Even */
  120. .card:nth-of-type(2n) {
  121.     background-color: #313842 !important;
  122. }
  123. /* Odd */
  124. .card:nth-of-type(2n-1) {
  125.     background-color: #252a31 !important;
  126. }
  127.  
  128.  
  129. /* Even */
  130. .card:nth-of-type(2n) {
  131.     background-color: #2b333e !important;
  132. }
  133. /* Odd */
  134. .card:nth-of-type(2n-1) {
  135.     background-color: #21262d !important;
  136. }
  137.  
  138.  
  139. .card-title, .comment-text {
  140.      background-color: #1c1f23;
  141.     border: 1px solid #13181e;
  142.     width: 100% !important;
  143.  
  144.     border-radius: 4px;
  145.     margin-bottom: 5px;
  146.     padding: 6px 5px !important;
  147. }
  148. .container .posts .card .card-title a:link {
  149.     color: #aa83ff !important;
  150.     font-weight: 500;
  151. }
  152. .container .posts .card .card-title a:visited {
  153.     color: #7e798a !important;
  154. }
  155.  
  156.  
  157. .container {
  158. background-color: #15181c !important;
  159. }
  160.  
  161. a.mr-2[href^="/h/"] {
  162.     display: none !important;
  163. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement