Advertisement
Guest User

Untitled

a guest
Oct 8th, 2022
850
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.19 KB | None | 0 0
  1. @import url("https://fonts.googleapis.com/css2?family=Raleway:wght@700;800&display=swap");
  2.  
  3. #app {
  4.   background-position: right;
  5. }
  6. #app #sortable,
  7. #app main {
  8.   padding: 20px;
  9. }
  10. #config-buttons {
  11.   bottom: 50%;
  12.   transform: translateY(50%);
  13.   border-top-left-radius: 10px;
  14.   border-bottom-left-radius: 10px;
  15.   box-shadow: rgba(255, 255, 255, 0.1) -1px 1px 1px 0, rgba(255, 255, 255, 0.1) 0 -1px 1px 0,
  16.     rgba(0, 0, 0, 0.1) -1px 0 20px 5px;
  17.   background-color: rgba(40, 40, 40, 0.25);
  18.   backdrop-filter: blur(10px);
  19.   -webkit-backdrop-filter: blur(10px);
  20. }
  21. #config-buttons a {
  22.   background: none;
  23. }
  24. #config-buttons a svg {
  25.   transition: all 0.1s ease-in-out;
  26.   color: rgba(255, 255, 255, 0.5);
  27. }
  28. #config-buttons a:hover svg {
  29.   transform: scale(1.1);
  30.   color: rgba(255, 255, 255, 0.95);
  31. }
  32.  
  33. .black {
  34.   color: white !important;
  35. }
  36.  
  37. .homesearch {
  38.     height: 32px;
  39. }
  40.  
  41. .searchform button {
  42.     padding: 0px 15px;
  43. }
  44.  
  45. .searchform {
  46.     box-shadow: rgb(0 0 0 / 5%) -1px -1px 5px 0, rgb(0 0 0 / 15%) 0px 20px 25px -5px, rgb(0 0 0 / 4%) 0px 10px 10px -5px !important;
  47.     background-color: rgba(255, 255, 255, 0.4) !important;
  48.     border-radius: 12px;
  49.     backdrop-filter: blur(10px);
  50.     -webkit-backdrop-filter: blur(10px);
  51.     margin: 5px auto;
  52. }
  53.  
  54. .item {
  55.   box-shadow: rgba(0, 0, 0, 0.05) -1px -1px 5px 0, rgba(0, 0, 0, 0.15) 0px 20px 25px -5px,
  56.     rgba(0, 0, 0, 0.04) 0px 10px 10px -5px !important;
  57.   border-radius: 12px;
  58.   background-image: none;
  59.   border: none;
  60.   outline: none;
  61.   height: 100px;
  62.   width: 300px;
  63.   margin: 1.25rem;
  64.   padding: 1rem 55px 1rem 1rem;
  65.   transition: all 0.25s ease-in-out;
  66.   transition-property: transform, box-shadow, background-color;
  67.   background-color: rgba(255, 255, 255, 0.4) !important;
  68.   backdrop-filter: blur(10px);
  69.   -webkit-backdrop-filter: blur(10px);
  70. }
  71. .item:after {
  72.   height: 100px;
  73.   opacity: 0.2;
  74. }
  75. .item:hover {
  76.   transform: scale(1.1);
  77.   background-color: rgba(255, 255, 255, 0.2) !important;
  78.   box-shadow: rgba(0, 0, 0, 0.1) 0px 60px 40px -7px !important;
  79. }
  80. .item .svg-inline--fa {
  81.   height: 100px;
  82.   vertical-align: middle;
  83.   opacity: 0.2;
  84. }
  85.  
  86. @media only screen and (max-width: 750px) {
  87.   .item {
  88.     padding-top: 2rem;
  89.     padding-bottom: 2rem;
  90.   }
  91.   #config-buttons {
  92.     display: none;
  93.   }
  94. }
  95.  
  96. .details * {
  97.   color: white !important;
  98. }
  99. .details {
  100.   padding: 0 0.5rem;
  101. }
  102.  
  103. .app-icon {
  104.   filter: drop-shadow(1px 1px 2px rgba(10, 0, 20, 0.1));
  105. }
  106.  
  107. .livestats-container {
  108.   margin-top: 0.5rem;
  109. }
  110. .livestats-container .livestats .title {
  111.   margin-bottom: 3px;
  112. }
  113. .livestats-container .livestats li {
  114.   padding-right: 1rem;
  115. }
  116.  
  117. .livestats-container strong {
  118.   font-weight: 500 !important;
  119.   padding: 0 2px;
  120. }
  121.  
  122. .details > .title {
  123.   font-weight: 800;
  124.   font-size: 1.3rem !important;
  125.   letter-spacing: 1px;
  126.   font-family: "Raleway", sans-serif;
  127.   text-shadow: rgba(10, 0, 60, 0.25) 1px 0 5px;
  128.   text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.1), 1px 1px 2px rgba(10, 0, 60, 0.25);
  129.   transition: all 0.25s ease-in-out;
  130. }
  131. .item:hover .details > .title {
  132.   text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.1), 1px 1px 5px rgba(10, 0, 60, 0.2);
  133. }
  134.  
  135. .item-container .tooltip {
  136.     z-index: -1;
  137. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement