Advertisement
thehoaj

Untitled

May 7th, 2020
1,599
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.81 KB | None | 0 0
  1. #output video {
  2.     width: 100%;
  3.   }
  4.  
  5.   #progressBar {
  6.     height: 5px;
  7.     width: 0%;
  8.     background-color: #35b44f;
  9.     transition: width .4s ease-in-out;
  10.   }
  11.  
  12.   body.is-seed .show-seed {
  13.     display: inline;
  14.   }
  15.  
  16.   body.is-seed .show-leech {
  17.     display: none;
  18.   }
  19.  
  20.   .show-seed {
  21.     display: none;
  22.   }
  23.  
  24.   #status code {
  25.     font-size: 90%;
  26.     font-weight: 700;
  27.     margin-left: 3px;
  28.     margin-right: 3px;
  29.     border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  30.   }
  31.  
  32.   .is-seed #hero {
  33.     background-color: #154820;
  34.     transition: .5s .5s background-color ease-in-out;
  35.   }
  36.  
  37.   #hero {
  38.     background-color: #2a3749;
  39.   }
  40.  
  41.   #status {
  42.     color: #fff;
  43.     font-size: 17px;
  44.     padding: 5px;
  45.   }
  46.  
  47.   a:link,
  48.   a:visited {
  49.     color: #30a247;
  50.     text-decoration: none;
  51.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement