Built files from Bizgaze WebServer
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

style.carousel.css 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. /*Carousel*/
  2. .carousel-control-prev,
  3. .carousel-control-next {
  4. opacity: 1;
  5. }
  6. .carousel-control-prev:hover .carousel-control-next-icon,
  7. .carousel-control-prev:hover .carousel-control-prev-icon,
  8. .carousel-control-next:hover .carousel-control-next-icon,
  9. .carousel-control-next:hover .carousel-control-prev-icon {
  10. border-color: white;
  11. }
  12. .carousel-control-next-icon,
  13. .carousel-control-prev-icon {
  14. height: 50px;
  15. width: 50px;
  16. border: 2px solid;
  17. border-color: rgba(255, 255, 255, 0.5);
  18. border-radius: 50%;
  19. background: none;
  20. display: -webkit-box;
  21. display: -ms-flexbox;
  22. display: flex;
  23. -webkit-box-align: center;
  24. -ms-flex-align: center;
  25. align-items: center;
  26. justify-content: center;
  27. -webkit-justify-content: center;
  28. -ms-flex-pack: center;
  29. font-size: 21px;
  30. }
  31. .carousel-control-next-icon:before,
  32. .carousel-control-prev-icon:before {
  33. display: inline-block;
  34. font: normal normal normal 22px/1 'Material-Design-Iconic-Font';
  35. text-rendering: auto;
  36. padding-left: 3px;
  37. speak: none;
  38. text-transform: none;
  39. text-rendering: auto;
  40. line-height: 1;
  41. -webkit-font-smoothing: antialiased;
  42. -moz-osx-font-smoothing: grayscale;
  43. }
  44. .carousel-control-next-icon:before {
  45. content: "\f2fb";
  46. }
  47. .carousel-control-prev-icon:before {
  48. content: "\f2fa";
  49. }
  50. .custom-carousel-nav .carousel-text-nav {
  51. position: static;
  52. color: #1F2327;
  53. }
  54. .custom-carousel-nav .carousel-text-nav:hover, .custom-carousel-nav .carousel-text-nav:focus {
  55. color: #1F2327;
  56. }
  57. .custom-carousel-nav .carousel-indicators {
  58. position: static;
  59. }
  60. .carousel-indicators {
  61. bottom: 20px;
  62. }
  63. .carousel-indicators li {
  64. width: 6px;
  65. height: 6px;
  66. margin-right: 5px;
  67. margin-left: 5px;
  68. border: 1px solid #fff;
  69. border-radius: 50%;
  70. background: transparent;
  71. }
  72. .carousel-indicators li.active {
  73. background: #b9c0c7;
  74. }
  75. .carousel-indicators.dark-indicators li {
  76. border-color: #1F2327;
  77. }
  78. .carousel-indicators.dark-indicators li.active {
  79. background: #1f2327;
  80. }
  81. .carousel-indicators.theme-indicators li {
  82. border-color: #007D88;
  83. }
  84. .carousel-indicators.theme-indicators li.active {
  85. background: #007d88;
  86. }
  87. .carousel-caption {
  88. bottom: 30px;
  89. }
  90. .owl-carousel .item-video {
  91. height: auto;
  92. }
  93. .owl-carousel .owl-video-tn {
  94. background-size: cover;
  95. }
  96. .owl-carousel .owl-dots .owl-dot span {
  97. width: 8px;
  98. height: 8px;
  99. margin: 0 5px;
  100. background: transparent;
  101. border: 1px solid #1F2327;
  102. }
  103. .owl-carousel .owl-dots .owl-dot:focus {
  104. outline: none;
  105. }
  106. .owl-carousel .owl-dots .owl-dot:hover span {
  107. background: #1F2327;
  108. }
  109. .owl-carousel .owl-dots .owl-dot.active span {
  110. background: #1F2327;
  111. }
  112. .owl-carousel.light-owl-dots .owl-dots .owl-dot span {
  113. border: 1px solid #fff;
  114. }
  115. .owl-carousel.light-owl-dots .owl-dots .owl-dot:focus {
  116. outline: none;
  117. }
  118. .owl-carousel.light-owl-dots .owl-dots .owl-dot:hover span {
  119. background: #fff;
  120. }
  121. .owl-carousel.light-owl-dots .owl-dots .owl-dot.active span {
  122. background: #fff;
  123. }
  124. .owl-carousel.theme-owl-dots .owl-dots .owl-dot span {
  125. border: 1px solid #007D88;
  126. }
  127. .owl-carousel.theme-owl-dots .owl-dots .owl-dot:focus {
  128. outline: none;
  129. }
  130. .owl-carousel.theme-owl-dots .owl-dots .owl-dot:hover span {
  131. background: #007D88;
  132. }
  133. .owl-carousel.theme-owl-dots .owl-dots .owl-dot.active span {
  134. background: #007D88;
  135. }
  136. .owl-carousel .owl-video-play-icon {
  137. background: rgba(255, 255, 255, 0.8);
  138. left: 20px;
  139. bottom: 20px;
  140. margin: 0;
  141. height: 35px;
  142. width: 35px;
  143. border-radius: 50%;
  144. top: auto;
  145. display: -webkit-box;
  146. display: -ms-flexbox;
  147. display: flex;
  148. -webkit-box-align: center;
  149. -ms-flex-align: center;
  150. align-items: center;
  151. justify-content: center;
  152. -webkit-justify-content: center;
  153. -ms-flex-pack: center;
  154. color: #298DFF;
  155. }
  156. .owl-carousel .owl-video-play-icon:before {
  157. display: inline-block;
  158. font: normal normal normal 22px/1 'Material-Design-Iconic-Font';
  159. text-rendering: auto;
  160. padding-left: 3px;
  161. speak: none;
  162. text-transform: none;
  163. text-rendering: auto;
  164. line-height: 1;
  165. -webkit-font-smoothing: antialiased;
  166. -moz-osx-font-smoothing: grayscale;
  167. content: "\f3aa";
  168. }
  169. .owl-carousel .owl-video-play-icon:hover {
  170. -webkit-transform: scale(1.1, 1.1);
  171. -moz-transform: scale(1.1, 1.1);
  172. -ms-transform: scale(1.1, 1.1);
  173. -o-transform: scale(1.1, 1.1);
  174. transform: scale(1.1, 1.1);
  175. }
  176. .owl-carousel.dots-on-item .owl-dots {
  177. position: absolute;
  178. left: 0;
  179. right: 0;
  180. bottom: 15px;
  181. }
  182. @media (max-width: 991px) {
  183. .carousel-control-next-icon, .carousel-control-prev-icon {
  184. height: 30px;
  185. width: 30px;
  186. font-size: 17px;
  187. }
  188. }
  189. /*Twitter slider*/
  190. .twitter-slider-wrap i.fa-twitter {
  191. font-size: 30px;
  192. color: #fff;
  193. }
  194. .twitter-slider-wrap .owl-carousel {
  195. text-align: center;
  196. }
  197. .twitter-slider-wrap .owl-carousel .user, .twitter-slider-wrap .owl-carousel .interact {
  198. display: none;
  199. }
  200. .twitter-slider-wrap .owl-carousel .tweet {
  201. font-size: 16px;
  202. color: #fff;
  203. margin-bottom: 30px;
  204. }
  205. .twitter-slider-wrap .owl-carousel .tweet > a {
  206. color: #fff;
  207. }
  208. .twitter-slider-wrap .owl-carousel .timePosted > a {
  209. font-size: 12px;
  210. color: #fff;
  211. }