Advertisement
Guest User

Themler Post SLider CSS

a guest
Nov 16th, 2016
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.13 KB | None | 0 0
  1. /**
  2.     * Plugin Name:  bdwebteam Carousel 2x Post Widget
  3.     * Plugin URI: http://plugin.bdwebteam.com/bdwebteam-single2x-post-widget
  4.     * Description: Adds a widget that shows the most recent posts of your site with excerpt, featured image, date by sorting & ordering feature
  5.     * Author:Md. Mahabub Hasan Manik
  6.     * Author URI: http://bdwebteam.com/
  7.     * Version: 1.0.1
  8.     * Text Domain: bdwebteam
  9.     * Domain Path: /languages
  10.     * License: MIT License
  11.     * License URI: http://opensource.org/licenses/MIT
  12. */
  13. .x-read-more{
  14.     color: #111111;
  15. }
  16. .carousel-2x-post{
  17.     position: relative;
  18. }
  19. .carousel-2x-post-holder .post-formet-icon{
  20.     position: absolute;
  21.     bottom: 5px;
  22.     right: 5px;
  23.     opacity:.8;
  24.     font-size: 12px;
  25.     z-index: 99;
  26. }
  27.  
  28. .single2x-post_img{
  29.     position: relative;
  30. }
  31.  
  32. .container {
  33.     margin-top: 20px;
  34. }
  35. .x-view-all{
  36.     margin-top: 20px;
  37. }
  38.  
  39. /* Carousel Styles */
  40. .carousel-indicators .active {
  41.     background-color: #2980b9;
  42. }
  43.  
  44. .carousel-inner img {
  45.     width: 100%;
  46.     max-height: 460px
  47. }
  48.  
  49. .carousel-control {
  50. }
  51.  
  52. .carousel-control.left,
  53. .carousel-control.right {
  54.     opacity: 1;
  55. background: #333;
  56. bottom: inherit;
  57. top: 50%;
  58. width: inherit;
  59. padding: 10px;
  60. }
  61.  
  62. .carousel-control.left span {
  63.     padding: 15px;
  64. }
  65.  
  66. .carousel-control.right span {
  67.     padding: 15px;
  68. }
  69.  
  70. .carousel-control .glyphicon-chevron-left,
  71. .carousel-control .glyphicon-chevron-right,
  72. .carousel-control .icon-prev,
  73. .carousel-control .icon-next {
  74.     position: absolute;
  75.     top: 45%;
  76.     z-index: 5;
  77.     display: inline-block;
  78. }
  79.  
  80. .carousel-control .glyphicon-chevron-left,
  81. .carousel-control .icon-prev {
  82.     left: 0;
  83. }
  84.  
  85. .carousel-control .glyphicon-chevron-right,
  86. .carousel-control .icon-next {
  87.     right: 0;
  88. }
  89.  
  90. .carousel-control.left span,
  91. .carousel-control.right span {
  92.     background-color: #000;
  93. }
  94.  
  95. .carousel-control.left span:hover,
  96. .carousel-control.right span:hover {
  97.     opacity: .7;
  98.     filter: alpha(opacity=70);
  99. }
  100.  
  101. /* Carousel Header Styles */
  102. .header-text {
  103.     position: absolute;
  104.     top:10%;
  105.     left: 1.8%;
  106.     right: auto;
  107.     width: 96.66666666666666%;
  108.     color: #fff;
  109. }
  110.  
  111. .header-text h2 {
  112.     font-size:18px;
  113. }
  114.  
  115. .header-text h2 span {
  116.     background-color: #2980b9;
  117.     padding: 10px;
  118.     color: #fff;
  119. }
  120.  
  121. .header-text h3 span {
  122.     color: #fff;
  123.     padding: 15px;
  124.     font-size: 14px;
  125. }
  126.  
  127. .btn-min-block {
  128.     min-width: 170px;
  129.     line-height: 22px;
  130. }
  131. .btn-theme {  
  132. }
  133.  
  134. .btn-theme:hover {
  135.     color: #000;
  136.     background-color: #fff;
  137.     border-color: #fff;
  138. }
  139.  
  140. .carousel-fade .carousel-inner .item {
  141.   opacity: 0;
  142.   -webkit-transition-property: opacity;
  143.   -moz-transition-property: opacity;
  144.   -o-transition-property: opacity;
  145.   transition-property: opacity;
  146. }
  147. .carousel-fade .carousel-inner .active {
  148.   opacity: 1;
  149. }
  150. .carousel-fade .carousel-inner .active.left,
  151. .carousel-fade .carousel-inner .active.right {
  152.   left: 0;
  153.   opacity: 0;
  154.   z-index: 1;
  155. }
  156. .carousel-fade .carousel-inner .next.left,
  157. .carousel-fade .carousel-inner .prev.right {
  158.   opacity: 1;
  159. }
  160. .carousel-fade .carousel-control {
  161.   z-index: 2;
  162. }
  163.  
  164. .panel-heading {
  165.     padding: 4px 15px 3px;
  166. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement