Advertisement
mehedicse11

Service addon class- 18

Jul 21st, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.31 KB | None | 0 0
  1. /* ================================= */
  2. /* ------- SERVICE ITEM CSS ------- */
  3. /* ================================= */
  4. .single-service-item {
  5.     border: 1px solid #e9eff2;
  6.    padding-left: 30%;
  7.     position: relative;
  8.     margin-bottom: 30px;
  9.     min-height: 190px;
  10. }
  11. .service-more-btn{font-weight: 700;font-size: 16px}
  12. .service-icon {
  13.     background-size: cover;
  14.     height: 100%;
  15.     left: 0;
  16.     position: absolute;
  17.     top: 0;
  18.     width: 25%;
  19.     z-index: 1;
  20. }
  21. .service-icon{background: url(img/service-bg-1.png)}
  22. .service-icon i {
  23.     color: #333;
  24.    font-size: 25px;
  25. }
  26. .service-icon::after {
  27.     background: #eaf2f6 none repeat scroll 0 0;
  28.    content: "";
  29.     height: 100%;
  30.     left: 0;
  31.     position: absolute;
  32.     top: 0;
  33.     width: 100%;
  34.    
  35. }
  36. .service-icon-table-cell {
  37.     display: table-cell;
  38.     position: relative;
  39.     text-align: center;
  40.     vertical-align: middle;
  41.     width: 100%;
  42.     z-index: 2;
  43. }
  44. .single-service-item:hover .service-icon::after{background: #1e8bc3;opacity: .8;transition: .7s}
  45. .single-service-item:hover .service-table i{color: #fff}
  46. .single-service-item:hover a{text-decoration: underline}
  47. .service-table{display: table;width: 100%;height: 100%}
  48. .service-inner-text {
  49.     padding: 15px 15px 15px 0;
  50. }
  51. .service-inner-text h3 {
  52.     font-size: 20px;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement