Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.29 KB | None | 0 0
  1. /* Colors:
  2. Red: #9f1709;
  3. Dark Blue: #3f5574;
  4. Orange: #e0742e;
  5. */
  6.  
  7. /*******************************************************************************
  8. * STREAM TILES
  9. ******************************************************************************/
  10.  
  11. #collection-items .tile:not(.portrait) .description,
  12. #collection-items .tile,
  13. #collection-items .tile:not(.portrait):not(.youtube) img,
  14. #collection-items .tile:not(.highlight):not(.portrait) .description h4,
  15. #collection-items .tile:not(.highlight):not(.portrait) .description h4.long-h3 {
  16. transition: all 1.1s ease-in;
  17. transition-delay: 1.1s;
  18. }
  19. #collection-items .tile:hover .description,
  20. #collection-items .tile:hover,
  21. #collection-items .tile:hover img,
  22. #collection-items .tile:not(.highlight):hover .description h4,
  23. #collection-items .tile:not(.highlight):hover .description h4.long-h3 {
  24. transition: all 0.19s cubic-bezier(0, 0.36, 0.09, 0.73);
  25. transition-delay: 0.3s;
  26. }
  27.  
  28. #collection-items .tile.single.no-img:hover .description h4,
  29. #collection-items .tile.single.no-img:hover .description h4.long-h3 {
  30. transition: all 0.1s;
  31. transition-delay: 0.1s;
  32. }
  33.  
  34. #collection-items .tile.bloated:not(.highlight):hover .description {
  35. height: 100%;
  36. }
  37. #collection-items .tile:not(.highlight):hover .description h4,
  38. #collection-items .tile:not(.highlight):hover .description h4.long-h3 {
  39. opacity: 0.98;
  40. filter: alpha(opacity=98);
  41. }
  42. #collection-items .tile:hover {
  43. box-shadow: 0 2px 7px rgba(0, 0, 0, 0.28);
  44. }
  45. #collection-items .tile,
  46. #collection-items .tile:hover {
  47. transition: box-shadow 0.1s ease-in-out 0s;
  48. }
  49.  
  50. #collection-items .tile.bloated:not(.highlight):not(.uberflip):not(.youtube):not(.twitter):hover img {
  51. filter: blur(5px);
  52. transition-delay: 0.4s;
  53. }
  54. div.tile.single>a.view,
  55. li.tile.single>a.view {
  56. background-image: none;
  57. margin: 0 20px;
  58. padding: 3px 0px;
  59. font-size: 8pt;
  60. font-weight: 900;
  61. letter-spacing: 0.75px;
  62. width: auto;
  63. border-radius: 0;
  64. height: auto;
  65. text-transform: uppercase;
  66. line-height: 1;
  67. bottom: 10px;
  68. white-space: nowrap;
  69. color: #9f1709;
  70. background: none !Important;
  71. border-width: 0px;
  72. border-style: solid;
  73. box-shadow: none;
  74. transition: 0.2s all;
  75. transform: translateZ(0);
  76. }
  77.  
  78. .tile.single:hover>a.view {
  79. text-decoration: none;
  80. }
  81.  
  82. .tile.single>a.view:before {
  83. display: none;
  84. }
  85.  
  86. .tile.single>a.view:after {
  87. display: inline;
  88. content: ' ›';
  89. position: relative;
  90. top: -1px;
  91. left: 3px;
  92. right: auto;
  93. bottom: auto;
  94. background: none;
  95. }
  96.  
  97. .tile .description {
  98. border-top: 1px solid #fefefe;
  99. }
  100.  
  101. /* Description Gradient */
  102.  
  103. .tile.single>.description:after {
  104. content: '';
  105. margin-left: -20px;
  106. background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, white 77%);
  107. height: 8rem;
  108. bottom: 0;
  109. display: block;
  110. position: absolute;
  111. left: 0;
  112. right: 0;
  113. z-index: 5;
  114. }
  115. /* transparency for descriptions in tiles on hover */
  116. .tile.single .description {
  117. opacity: 0.95;
  118. filter: alpha(opacity=95); /* For IE8 and earlier */
  119. }
  120.  
  121. .tile.single.youtube .description {
  122. opacity: 1.00;
  123. filter: alpha(opacity=100); /* For IE8 and earlier */
  124. }
  125.  
  126. .tile.single.with-img .description h4.long-h3 {
  127. display: inherit;
  128. }
  129. .tile.single .description .friendly-timestamp {
  130. display: none;
  131. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement