metis.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. /*-----------------------------------------------------------------------------
  2. - Revolution Slider 5.0 Navigatin Skin Style -
  3. METIS SKIN
  4. author: ThemePunch
  5. email: info@themepunch.com
  6. website: http://www.themepunch.com
  7. -----------------------------------------------------------------------------*/
  8. /* ARROWS */
  9. .metis.tparrows {
  10. background:#fff;
  11. padding:10px;
  12. transition:all 0.3s;
  13. -webkit-transition:all 0.3s;
  14. width:60px;
  15. height:60px;
  16. box-sizing:border-box;
  17. }
  18. .metis.tparrows:hover {
  19. background:#fff;
  20. background:rgba(255,255,255,0.75);
  21. }
  22. .metis.tparrows:before {
  23. color:#000;
  24. transition:all 0.3s;
  25. -webkit-transition:all 0.3s;
  26. }
  27. .metis.tparrows:hover:before {
  28. transform:scale(1.5);
  29. }
  30. /* BULLETS */
  31. .metis .tp-bullet {
  32. opacity:1;
  33. width:50px;
  34. height:50px;
  35. padding:3px;
  36. background:#000;
  37. background-color:rgba(0,0,0,0.25);
  38. margin:0px;
  39. box-sizing:border-box;
  40. transition:all 0.3s;
  41. -webkit-transition:all 0.3s;
  42. border-radius:50%;
  43. }
  44. .metis .tp-bullet-image {
  45. border-radius:50%;
  46. display:block;
  47. box-sizing:border-box;
  48. position:relative;
  49. -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  50. -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  51. box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  52. width:44px;
  53. height:44px;
  54. background-size:cover;
  55. background-position:center center;
  56. }
  57. .metis .tp-bullet-title {
  58. position:absolute;
  59. bottom:65px;
  60. display:inline-block;
  61. left:50%;
  62. background:#000;
  63. background:rgba(0,0,0,0.75);
  64. color:#fff;
  65. padding:10px 30px;
  66. border-radius:4px;
  67. -webkit-border-radius:4px;
  68. opacity:0;
  69. transition:all 0.3s;
  70. -webkit-transition:all 0.3s;
  71. transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  72. transform-origin:50% 100%;
  73. -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  74. -webkit-transform-origin:50% 100%;
  75. opacity:0;
  76. white-space:nowrap;
  77. }
  78. .metis .tp-bullet:hover .tp-bullet-title {
  79. transform:rotateX(0deg) translateX(-50%);
  80. -webkit-transform:rotateX(0deg) translateX(-50%);
  81. opacity:1;
  82. }
  83. .metis .tp-bullet.selected,
  84. .metis .tp-bullet:hover {
  85. background: rgba(255,255,255,1);
  86. background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  87. background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  88. background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  89. background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  90. background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  91. background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  92. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
  93. }
  94. .metis .tp-bullet-title:after {
  95. content:" ";
  96. position:absolute;
  97. left:50%;
  98. margin-left:-8px;
  99. width: 0;
  100. height: 0;
  101. border-style: solid;
  102. border-width: 8px 8px 0 8px;
  103. border-color: rgba(0,0,0,0.75) transparent transparent transparent;
  104. bottom:-8px;
  105. }
  106. /* METIS TAB */
  107. .metis .tp-tab-number {
  108. color: #fff;
  109. font-size: 40px;
  110. line-height: 30px;
  111. font-weight: 400;
  112. font-family: "Playfair Display";
  113. width: 50px;
  114. margin-right: 17px;
  115. display: inline-block;
  116. float: left;
  117. }
  118. .metis .tp-tab-mask {
  119. padding-left: 20px;
  120. left: 0px;
  121. max-width: 90px !important;
  122. transition: 0.4s padding-left, 0.4s left, 0.4s max-width;
  123. }
  124. .metis:hover .tp-tab-mask {
  125. padding-left: 0px;
  126. left: 50px;
  127. max-width: 500px !important;
  128. }
  129. .metis .tp-tab-divider {
  130. border-right: 1px solid transparent;
  131. height: 30px;
  132. width: 1px;
  133. margin-top: 5px;
  134. display: inline-block;
  135. float: left;
  136. }
  137. .metis .tp-tab-title {
  138. color: #fff;
  139. font-size: 20px;
  140. line-height: 20px;
  141. font-weight: 400;
  142. font-family: "Playfair Display";
  143. position: relative;
  144. padding-top: 10px;
  145. padding-left: 30px;
  146. display: inline-block;
  147. transform: translateX(-100%);
  148. transition: 0.4s all;
  149. }
  150. .metis .tp-tab-title-mask {
  151. position: absolute;
  152. overflow: hidden;
  153. left: 67px;
  154. }
  155. .metis:hover .tp-tab-title {
  156. transform: translateX(0);
  157. }
  158. .metis .tp-tab {
  159. opacity: 0.15;
  160. transition: 0.4s all;
  161. }
  162. .metis .tp-tab:hover,
  163. .metis .tp-tab.selected {
  164. opacity: 1;
  165. }
  166. .metis .tp-tab.selected .tp-tab-divider {
  167. border-right: 1px solid #cdb083;
  168. }
  169. .metis.tp-tabs {
  170. max-width: 118px !important;
  171. padding-left: 50px;
  172. }
  173. .metis.tp-tabs:before {
  174. content: " ";
  175. height: 100%;
  176. width: 88px;
  177. background: rgba(0, 0, 0, 0.15);
  178. border-right: 1px solid rgba(255, 255, 255, 0.10);
  179. left: 0px;
  180. top: 0px;
  181. position: absolute;
  182. transition: 0.4s all;
  183. }
  184. .metis.tp-tabs:hover:before {
  185. width: 118px;
  186. }
  187. @media (max-width: 499px) {
  188. .metis.tp-tabs:before {
  189. background: rgba(0, 0, 0, 0.75);
  190. }
  191. }