Advertisement
Guest User

Kbin - Blue

a guest
Jun 23rd, 2023
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.21 KB | None | 0 0
  1. .entry header h1, .entry header h2 {
  2.     font-size: 1rem;
  3.     line-height: 1;
  4. }
  5. .meta {
  6.     color: #c0c0c0;
  7. }
  8. .meta a {
  9.     color: #a0c6ff;
  10. }
  11. .meta a:hover {
  12.     color: #69a5ff;
  13. }
  14. .entry__domain, .entry__domain a {
  15.     color: #65a2ff;
  16. }
  17. #header {
  18.      background: #042b74;
  19.     -webkit-box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 8px 0px;
  20.     -moz-box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 8px 0px;
  21.     box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 8px 0px;
  22. }
  23.  
  24. #middle {
  25.     background: #04235c !important;
  26. }
  27.  
  28.  
  29. .rounded-edges .options--top, .rounded-edges .section--top {
  30. background-position-x:0%;
  31. background-image:-webkit-linear-gradient(-90deg,rgb(4,44,120) 36%,rgb(0,52,148) 100%);
  32. background-image:-moz-linear-gradient(-90deg,rgb(4,44,120) 36%,rgb(0,52,148) 100%);
  33. background-image:-o-linear-gradient(-90deg,rgb(4,44,120) 36%,rgb(0,52,148) 100%);
  34. background-image:-ms-linear-gradient(-90deg,rgb(4,44,120) 36%,rgb(0,52,148) 100%);
  35. }
  36.  
  37. .section {
  38.  background-color: #0c3581;
  39.  margin-bottom: 0.4rem;
  40.  border: 1px solid #0b2b65;
  41. }
  42. .options {
  43.     background-color: #0c3581;
  44.     border: 1px solid #0b2b65;
  45. }
  46. .dropdown__menu {
  47.     background-color: #0c3581;
  48.     border: 1px solid #0b2b65;
  49. }
  50. .dropdown__menu a:hover, .dropdown__menu button:hover {
  51.     background: #0b2c6a !important;
  52.     border: 1px solid #0b2b65 !important;
  53. }
  54. .head-nav li a.active {
  55.     background: #0a3688;
  56. }
  57.  
  58. #middle .kbin-container {
  59.     grid-template-columns: 5fr 1fr;
  60. }
  61.  
  62. .kbin-container {
  63.     max-width: 80vw;
  64. }
  65.  
  66. .entry {
  67.     padding: 0.2rem 0.2rem 0.3rem 0.2rem;
  68. }
  69. .entry header {
  70.     margin-bottom: 0px;
  71. }
  72. .entry footer menu {
  73.     column-gap: 0.5rem;
  74. }
  75.  
  76. .section menu {
  77.     font-size: .6rem;
  78. }
  79. .section menu>li {
  80.     padding: 0 0;
  81. }
  82.  
  83. .vote button {
  84.     background-color: #0c2d6a;
  85.     height: 1.8rem;
  86.     width: 3.6rem;
  87.     font-size: 0.8rem;
  88. }
  89. .vote .active.vote__up button {
  90.     color: #76a6ff;
  91. }
  92.  
  93. .view-compact .entry figure img {
  94.     max-height: 80px;
  95.     max-width: 80px;
  96. }
  97.  
  98. #middle #main {
  99.     padding: 0rem 6.5rem 6rem 6.5rem;  
  100. }
  101.  
  102. input, textarea {
  103.     background-color: #0a1e42;
  104. }
  105.  
  106. .btn__secondary {
  107.     background: #0f254e;
  108. }
  109. .magazine__subscribe div {
  110.         background: #0f254e;
  111. }
  112.  
  113. table tbody tr:nth-of-type(2n) {
  114.     background-color: #0e2d65;
  115. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement