Advertisement
Hokzii

FELIX-252394-CSS

Mar 31st, 2025 (edited)
511
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.32 KB | Gaming | 0 0
  1. /*Custom Box by HokZ #41458 / #170947, commissioned by and written for felix#252394 and permitted to use by them ONLY.
  2. Do not copy, edit, upload, redistrubute or use any bit of the code provided. It does not belong to you.*/
  3.  
  4. .MainContainer {
  5.     background-color: #00000063;
  6.     color: white !important;
  7.     border: 2px solid #999 !important;
  8.     max-width: 640px;
  9.     border-radius: 25px;
  10.     border-collapse: separate;
  11.     padding: 5px !important;
  12.     height: auto !important;
  13.     margin: 5px;
  14.     margin-bottom: 20px;
  15.     transition: box-shadow 1s ease-in-out;
  16. }
  17.  
  18. .MainContainer .Header {
  19.     background-color: #151515;
  20.     font-size: 20px !important;
  21.     color: #505050 !important;
  22. }
  23.  
  24. .MainContainer:hover {
  25.     box-shadow: 0px 0px 30px #333;
  26. }
  27.  
  28. .ContentCover {
  29.     width: 100%;
  30.     display: flex;
  31.     overflow: hidden;}
  32.  
  33. .LeftContent {
  34.     height: 290px;
  35.     width: 50%;
  36.     overflow: auto;
  37.     margin: 5px 2.5px 5px 5px !important;
  38.     padding: 10px;
  39.     font-size: 13px;
  40.     text-align: left;
  41.     }
  42.  
  43. .ExpandCover {
  44.     width: 100%;
  45.     overflow: hidden;
  46. }
  47.  
  48. .Expand {
  49.     background: #171717;
  50.     height: 50px;
  51.     width: 100%;
  52.     overflow: hidden;
  53.     margin-top: -10px;
  54.     border: 1px solid #ffffff29;
  55.     padding: 5px 5px 5px 10px;
  56.     transition: 1s;
  57. }
  58.  
  59. .Expand:hover {
  60.     height: 150px;
  61.     transition: 1s;
  62. }
  63.  
  64. .Expand h4 {
  65.     font-size: 18px !important;
  66.     margin-bottom: -7px;
  67.     color: #505050 !important;
  68. }
  69.  
  70. .RightContent {
  71.     height: 290px;
  72.     width: 50%;
  73.     margin: 5px 5px 5px 2.5px !important;
  74.     padding: 10px;
  75.     font-size: 13px;
  76.     text-align: left;}
  77.  
  78.  
  79. .TopLinks a {  
  80.     letter-spacing: 0.5px;
  81.     transition: 1s !important;
  82.     margin-left: 50px;
  83.     margin-right: 50px;
  84. }
  85.  
  86. .TopLinks a:hover,
  87. .TopLinks a:active {
  88.     letter-spacing: 2px;
  89.     transition: 1s !important;
  90. }
  91.  
  92. .TopLinks {
  93.     font-size: 15px;
  94.     text-align: center;
  95.     border-top-left-radius: 15px;
  96.     border-top-right-radius: 15px;
  97.     margin-bottom: 2px;}
  98.  
  99.  
  100. /*CodeSnippet for animated underline yoink'd from 30secondsofcode.org*/
  101. .TopLinks a {
  102.     display: inline-block;
  103.     position: relative;}
  104.  
  105. .TopLinks a::before {
  106.     color: #999;
  107.     content: "▼";
  108.     position: absolute;
  109.     width: 100%;
  110.     transform: scaleX(0);
  111.     height: 1px;
  112.     top: -10px;
  113.     left: 0;
  114. }
  115.  
  116. .TopLinks a:hover::before {
  117.     content: "▼";
  118.     position: absolute;
  119.     width: 100%;
  120.     transform: scaleX(1);
  121.     height: 1px;
  122.     top: -11px;
  123.     left: 0;
  124.     transition:  transform 0.25s ease-out;
  125. }
  126.  
  127. .TopLinks a::after {
  128.     content: '';
  129.     position: absolute;
  130.     width: 100%;
  131.     transform: scaleX(0);
  132.     height: 1px;
  133.     bottom: 0;
  134.     left: 0;
  135.     background-color: #999;
  136.     transition: transform 0.25s ease-out;
  137. }
  138.  
  139. .TopLinks a:hover::after {
  140.     transform: scaleX(1);
  141.     transform-origin: bottom center;}
  142.  
  143. .credit {
  144.     text-align: right;
  145.     margin-right: 15px;
  146.     font-size:5px;
  147.     transition: 1s;}
  148.  
  149. .credit:hover {
  150.     font-size: 12px;
  151.     transition: 1s;
  152.     text-decoration: unerline;
  153.     letter-spacing: 2px;}
  154.  
  155. .credit a {
  156.     color: #515151 !important;}
  157. .credit a:hover {
  158.     color: #ffffff !important}
  159.  
  160. .LeftContent::-webkit-scrollbar,
  161. .RightContent::-webkit-scrollbar,
  162. .Expand::-webkit-scrollbar {
  163.     display: none;
  164. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement