Advertisement
Guest User

Untitled

a guest
Oct 26th, 2022
708
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.56 KB | None | 0 0
  1. @import url("https://fonts.googleapis.com/css2?family=Raleway:wght@700;800&display=swap");
  2.  
  3. #app main, #app #sortable {
  4.   padding: 3px;
  5. }
  6.  
  7. #config-buttons {
  8.   width:300px;
  9.   height:45px;
  10.   margin-left:-150px;
  11.   bottom:0px;
  12.   left:50%;
  13.   overflow: hidden;
  14.   border-top-left-radius: 10px;
  15.   border-top-right-radius: 10px;
  16.   background-color: rgba(0, 0, 0, 0.5);
  17.   backdrop-filter: blur(8px);
  18.   -webkit-backdrop-filter: blur(8px);
  19.   display: flex;
  20.   flex-wrap: wrap;
  21.   justify-content: center;
  22.   align-items: center;
  23. }
  24.  
  25. #config-buttons a {
  26.   background: none;
  27. }
  28.  
  29. #config-buttons a svg {
  30.   transition: all 0.15s ease-in-out;
  31.   color: rgba(255, 255, 255, 0.5);
  32. }
  33.  
  34. #config-buttons a:hover svg {
  35.   transform: scale(1.1);
  36.   color: rgba(255, 255, 255, 1);
  37.   transition: all 0.15s ease-in-out;
  38. }
  39.  
  40. .item {
  41.   margin-right: 28px;
  42.   margin-left: 28px;
  43.   margin-bottom: 30px;
  44.   margin-top: 30px;
  45.   position: relative;
  46.   top: -30px;
  47.   border-radius: 8px;
  48.   height: 90px;
  49.   width: 280px;  
  50.   background-color: rgba(0, 0, 0, 0.5) !important;
  51.   backdrop-filter: blur(8px);
  52.   -webkit-backdrop-filter: blur(8px);
  53.   text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.2), 1px 1px 1.5px rgba(0, 0, 0, 0.8);
  54.   font-family: "Raleway", sans-serif;
  55. }
  56.  
  57. .item:after {
  58.   opacity: 0.0;
  59. }
  60.  
  61. .item .svg-inline--fa {
  62.   opacity: 0.0;
  63. }
  64.  
  65. .item:hover {
  66.   transform: scale(1.03);
  67.   background-color: rgba(125, 125, 125, 0.1) !important;
  68.   backdrop-filter: blur(1.5px);
  69.   -webkit-backdrop-filter: blur(1.5px);
  70.   transition: all 0.15s ease-in-out;
  71. }
  72.  
  73. .app-icon {
  74.   height: 55px;
  75.   width: 55px;
  76. }
  77.  
  78. .livestats-container {
  79.   height: 25px;
  80.   width: 160px;
  81. }
  82.  
  83. .livestats-container .livestats {
  84.   display: flex;
  85.   flex-wrap: wrap;
  86.   justify-content: left;
  87.   align-items: left;
  88. }
  89.  
  90. .livestats-container .livestats strong {
  91.   font-weight: 100;
  92.   font-size: 10.5px;
  93. }
  94.  
  95. .livestats-container .livestats > .title {
  96.   font-weight: 100;
  97.   font-size: 10.5px;
  98.   letter-spacing: .5px;
  99.   opacity: .65;
  100. }
  101.  
  102. .livestats-container .livestats span{
  103.   font-weight: 100;
  104.   font-size: 10.5px;
  105.   opacity: .65;
  106. }
  107.  
  108. .details > .title {
  109.   font-weight: 750;
  110.   font-size: 15.5px;
  111.   text-transform: uppercase;
  112.   letter-spacing: 2px;
  113.   margin-bottom: 8px;
  114. }
  115.  
  116. li {
  117.   white-space: nowrap;
  118.   width: 80px;
  119. }
  120.  
  121. #sortable > section:nth-child(5) > div > div.details > div.livestats-container.white > ul > li:nth-child(2) {
  122.   display: none;
  123. }
  124.  
  125. #sortable > section:nth-child(5) > div > div.details > div.livestats-container.white > ul > li:nth-child(3) > span:after {
  126.   content: 'or';
  127. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement