Advertisement
Guest User

Untitled

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