Guest User

Untitled

a guest
Oct 10th, 2023
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.88 KB | None | 0 0
  1. :root {
  2.      --background-gradient-1-1: #84dfeb8a;
  3.      --background-gradient-1-2: #ffe0cb3a;
  4.      --background-grid-color: #e7b191d7;
  5.      --background-grid-size: 40px;
  6.      --background-grid-line-width: 2px;
  7. }
  8. html {
  9.      background-image: repeating-linear-gradient(90deg, var(--background-grid-color) 0, #ffffff00 var(--background-grid-line-width), #ffffff00 var(--background-grid-size)), repeating-linear-gradient( 0deg, var(--background-grid-color) 0, #ffffff00 var(--background-grid-line-width), #ffffff00 var(--background-grid-size));
  10.      background-size: var(--background-grid-size);
  11.      background-repeat: repeat;
  12.      height: 100%;
  13. }
  14. * {
  15.      box-sizing: border-box;
  16. }
  17. body {
  18.      background-image: linear-gradient(to top, #8c599b -20%, #5fcfca31 100%);
  19.      background-color: transparent;
  20.      min-height: 100%;
  21.      margin: 0;
  22.      min-height: 100% !important;
  23. }
  24. body:after {
  25.      display: block;
  26.      position: absolute;
  27.      background-image: linear-gradient(90deg, var(--background-gradient-1-1) 0%, var(--background-gradient-1-2) 40%, var(--background-gradient-1-2) 60%, var(--background-gradient-1-1) 100%);
  28.      content: "";
  29.      inset: 0;
  30.      z-index: -1;
  31.      height: 100%;
  32. }
  33. body:before {
  34.      position: fixed;
  35.      top: 50%;
  36.      left: 50%;
  37.      margin: -150px 0 0 -150px;
  38.      background-image: url('https://8chan.moe/.media/454eb9ebd9c9494591df3c7bd9b31bd3da427f2f91919171d5739c3f40b1f80e.gif');
  39.      content: "";
  40.      height: 300px;
  41.      width: 300px;
  42.      z-index: -1;
  43.      opacity: 0.5;
  44. }
  45. .innerPost {
  46.      border-radius: 6px;
  47.      margin-top: 0.7em;
  48.      margin-left: 4em;
  49.      position: relative;
  50.      transition: all 0.5s;
  51.      background-color: rgb(180, 210, 250);
  52.      overflow: visible;
  53.      border-bottom: 1px solid #666;
  54.      border-left: 6px solid orange;
  55. }
  56. @media only screen and (max-width: 812px) {
  57.      .innerPost {
  58.          margin-left: 0;
  59.          border-left: 0;
  60.     }
  61.      .innerPost:after, .innerPost:before {
  62.          display: none;
  63.     }
  64.      .postCell {
  65.          padding: 0 0.5em;
  66.     }
  67. }
  68. .postCell > .innerPost:hover {
  69.      box-shadow: -8px 8px teal, -7px 7px teal, -6px 6px teal, -5px 5px teal,-4px 4px teal, -3px 3px teal, -2px 2px teal, -1px 1px teal;
  70. }
  71. .postCell > .innerPost:after {
  72.      content: "";
  73.      position: absolute;
  74.      inset: -20px 0 0px -30px;
  75.      width: 2px;
  76.      background-color: orange;
  77. }
  78. .postCell > .innerPost:before {
  79.      content: "";
  80.      position: absolute;
  81.      top: 50%;
  82.      left: -30px;
  83.      width: 24px;
  84.      height: 3px;
  85.      background-color: orange;
  86. }
  87. .postCell:first-child .innerPost:last-child:after {
  88.      inset: 0px 0 0 -30px;
  89. }
  90. .postCell:last-child .innerPost:last-child:after {
  91.      inset: -20px 0 50% -30px;
  92. }
  93. .imgLink img {
  94.      border-radius: 8px;
  95. }
  96. @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:ital,wght@0,400;
  97. 0,600;
  98. 0,700;
  99. 1,400&display=swap');
  100. html, body {
  101.      font-family: 'IBM Plex Sans Condensed', sans-serif;
  102.      font-size: 16px;
  103. }
  104. #labelName {
  105.      font-size: 2.2em;
  106.      font-weight: 700;
  107.      text-shadow: 2px 2px red;
  108.      text-decoration: underline;
  109. }
  110. #labelName, #favoriteButtonLabel, #labelDescription {
  111.      color: orange;
  112. }
  113. #labelDescription {
  114.      margin: 0.4em 0;
  115. }
  116. #labelDescription::after {
  117.      content: "(TM)";
  118.      vertical-align: super;
  119.      font-size: 0.6em;
  120. }
  121. #bannerImage {
  122.      border-radius: 10px;
  123. }
  124. .boardLinks {
  125.      margin-top: 1em;
  126.      display: flex;
  127.      flex-direction: column;
  128. }
  129. .boardLinks a {
  130.      text-decoration: none;
  131. }
  132. .boardLinks a::after {
  133.      content: " →"
  134. }
  135. #newPostFieldset legend {
  136.      border: none;
  137. }
  138. /*.innerPost::after {
  139.      content: "";
  140.      position: absolute;
  141.      inset: 0;
  142.      width: 5px;
  143.      background-color: orange;
  144. }
  145. .imgLink img {
  146.      border-radius: 6px;
  147. }
  148. .title {
  149.      margin:0;
  150.      text-decoration: underline;
  151. }
  152. */
  153.  
Advertisement
Add Comment
Please, Sign In to add comment