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.

53 lines
858 B

9 years ago
  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. #container.night{
  9. background-color: white;
  10. -webkit-filter: invert(100%);
  11. }
  12. #container.night img, #container.night video{
  13. -webkit-filter: invert(100%);
  14. }
  15. #sidebar-longPost{
  16. overflow-y: scroll;
  17. float: left;
  18. position: fixed;
  19. height: 70%;
  20. width: 40%;
  21. right: 0px;
  22. background-color: #333;
  23. z-index: 9999;
  24. padding: 20px;
  25. }
  26. #sidebar-longPost *{
  27. box-sizing: border-box;
  28. }
  29. #sidebar-longPost img{
  30. width: 100%;
  31. padding-bottom: 700px;
  32. }
  33. #sidebar-longPost.closed, .closed{
  34. width: 0px;
  35. background: white;
  36. }
  37. .hidden{
  38. display: none;
  39. }
  40. /* animations */
  41. @-webkit-keyframes rotate {
  42. from {
  43. -webkit-transform: rotate(0deg);
  44. }
  45. to {
  46. -webkit-transform: rotate(360deg);
  47. }
  48. }