A LILiK chrome extension for the well known 9gag website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
839 B

  1. .softTransitions{
  2. -webkit-transition: all .7s ease-in-out;
  3. }
  4. header#top-nav a.logo{
  5. -webkit-animation: rotate 15s infinite linear;
  6. border-right: none !important;
  7. }
  8. @-webkit-keyframes rotate {
  9. from {
  10. -webkit-transform: rotate(0deg);
  11. }
  12. to {
  13. -webkit-transform: rotate(360deg);
  14. }
  15. }
  16. #container.night{
  17. background-color: white;
  18. -webkit-filter: invert(100%);
  19. }
  20. #container.night img, #container.night video{
  21. -webkit-filter: invert(100%);
  22. }
  23. #sidebar-longPost{
  24. overflow-y: scroll;
  25. float: left;
  26. position: fixed;
  27. height: 70%;
  28. width: 40%;
  29. right: 0px;
  30. background-color: #333;
  31. z-index: 9999;
  32. padding: 20px;
  33. }
  34. #sidebar-longPost *{
  35. box-sizing: border-box;
  36. }
  37. #sidebar-longPost img{
  38. width: 100%;
  39. padding-bottom: 700px;
  40. }
  41. #sidebar-longPost.closed, .closed{
  42. width: 0px;
  43. background: white;
  44. }
  45. .hidden{
  46. display: none;
  47. }