Advertisement
munirmahmud6

Web direc css

Feb 23rd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.53 KB | None | 0 0
  1. /* Doctors Form Filter Styles
  2. ============================================= */
  3. body {
  4.     overflow: hidden;
  5. }
  6. .no-padding {
  7.     padding: 0;
  8. }
  9. .text-left {
  10.     text-align: left;
  11. }
  12. .text-right {
  13.     text-align: right;
  14. }
  15. .wdp-listing-filter {
  16.     padding: 10px 20px;
  17.     box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  18.     background-color: #f2f2f2;
  19.     color: #999;
  20.     display: block;
  21.     font-size: 14px;
  22.     font-weight: 400;
  23.     letter-spacing: 0;
  24.     position: relative;
  25.     z-index: 9;
  26. }
  27. .wdp-filter-label {
  28.     color: #000;
  29.     font-size: 10px;
  30.     text-transform: uppercase;
  31.     padding: 10px 0;
  32.     display: block;
  33.     margin: 0 10px 0 0;
  34.     font-weight: 600;
  35. }
  36.  
  37. .wdp-listing-filter {
  38.  
  39. }
  40. .wdp-listing-filter {
  41.     .wdp-listing-form, .wdp-filter {
  42.         display: -webkit-box;
  43.         display: -webkit-flex;
  44.         display: flex;
  45.     }
  46.     .wdp-listing-form {        
  47.         flex-wrap: wrap;
  48.         justify-content: flex-start;
  49.     }
  50.  
  51.     .wdp-filter  {
  52.         .ms-options-wrap {
  53.             min-width: 134px;
  54.             position: relative;
  55.             margin-right: 12px;
  56.             .ms-options {
  57.                 width: auto;
  58.                 ul {
  59.                     min-width: 600px;
  60.                     input[type="checkbox"] {
  61.                         top: 12px;
  62.                         cursor: pointer;
  63.                     }
  64.                     label {
  65.                         padding: 8px 4px 8px 20px;
  66.                         &:hover {
  67.                             border: 1px solid #EFEFEF;
  68.                             cursor: pointer;
  69.                         }
  70.                     }
  71.                 }
  72.             }
  73.         }
  74.  
  75.     }    
  76.    
  77. }
  78.  
  79. // Listing styles
  80. .wdp-listing-results {    
  81.     padding: 15px 20px;
  82.     overflow: hidden;  
  83.         display: -webkit-box;
  84.         display: -webkit-flex;
  85.         display: flex;
  86.         -webkit-flex-wrap: wrap;
  87.         flex-wrap: wrap;
  88.         -webkit-box-pack: justify;
  89.         -webkit-justify-content: space-between;
  90.         justify-content: space-between;
  91. }
  92.  
  93. // Listing Items
  94. .wdp-listing-items {
  95.     list-style: none;
  96.     padding: 0;
  97.     margin: 0;
  98.     .wdp-listing-item.sponsored {
  99.         background-color: #e9f7fa;
  100.         overflow: hidden;
  101.         &:hover {
  102.             background-color: #bfe8f1;
  103.         }
  104.     }
  105.     .wdp-listing-item {
  106.         padding: 20px;
  107.         position: relative;
  108.         border-top: 1px solid #e6e6e6;
  109.         -webkit-transition: background-color .2s ease;
  110.         transition: background-color .2s ease;
  111.         .wdp-listing-card {
  112.             .wdp-listing-thumb {
  113.                 img {
  114.                     height: 140px;
  115.                     width: auto;
  116.                     display: block;
  117.                     margin: 0 auto;
  118.                     padding: 0;
  119.                     z-index: 1;
  120.                     position: relative;
  121.                 }
  122.             }
  123.             .wdp-listing-body {
  124.                 .wdp-listing-header {
  125.                     position: relative;
  126.                     padding-bottom: 12px;
  127.                     .listing-title {
  128.                         font-size: 28px;
  129.                         font-weight: 400;
  130.                         line-height: 1.2;
  131.                         font-family: Quarto-Bold,sans-serif;
  132.                         padding: 0;
  133.                         margin: 0 0 5px 0;
  134.                         &::before {
  135.                             position: absolute;
  136.                             content: "\f061";
  137.                             font-family: Fontawesome;
  138.                             color: #fff;
  139.                             background: #00adef;
  140.                             padding: 5px;
  141.                             border-radius: 25px;
  142.                             width: 24px;
  143.                             height: 24px;
  144.                             font-size: 14px;
  145.                             text-align: center;
  146.                             left: -30px;
  147.                             top: 4px;
  148.                             line-height: 14px;
  149.                         }
  150.                     }
  151.                     .wdp-listing-category {
  152.                         margin: 0;
  153.                         padding: 0;
  154.                         display: block;
  155.                         color: #787878;
  156.                         font-size: 12px;
  157.                         font-weight: 700;
  158.                         letter-spacing: 1.5px;
  159.                         line-height: 1.3;
  160.                         text-transform: uppercase;
  161.                         font-family: AvenirLTStd-Book,sans-serif;
  162.                     }
  163.                     .wdp-badge {
  164.                         display: inline-block;
  165.                         background: #b43b1e;
  166.                         color: #fff!important;
  167.                         font-size: 12px;
  168.                         font-weight: 700;
  169.                         letter-spacing: .05em;
  170.                         line-height: 1.4;
  171.                         padding: 3px 7px;
  172.                         margin-top: 10px;
  173.                         cursor: pointer;
  174.                     }
  175.                 }
  176.                 .wdp-listing-content {
  177.                     padding-top: 12px;
  178.                     p {
  179.                         font-size: 18px;
  180.                         font-family: 'Adobe Caslon Pro',sans-serif;
  181.                         line-height: 1.3;
  182.                         margin: 0;
  183.                         padding: 0;
  184.                         color: #000;
  185.                     }
  186.                 }
  187.             }
  188.         }
  189.     }
  190. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement