_features.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* Features Header */
  2. .features-header{
  3. background: #f5f5f5;
  4. margin: 30px 0;
  5. padding: 30px 30px;
  6. }
  7. .features-wrap{
  8. background: #f5f5f5;
  9. padding: 30px 30px 0px;
  10. margin-bottom: 50px;
  11. }
  12. /* Features Box */
  13. .featured-box{
  14. margin-bottom: 30px;
  15. .featured-icon{
  16. float: left;
  17. i{
  18. width: 48px;
  19. height: 48px;
  20. color: $preset;
  21. border: 1px solid $preset;
  22. text-align: center;
  23. line-height: 48px;
  24. font-size: 22px;
  25. border-radius: 50%;
  26. transition: all 0.4s ease;
  27. -moz-transition: all 0.4s ease;
  28. -webkit-transition: all 0.4s ease;
  29. -o-transition: all 0.4s ease;
  30. }
  31. }
  32. .featured-content{
  33. padding-left: 64px;
  34. h4{
  35. font-size: 18px;
  36. margin-bottom: 10px;
  37. }
  38. }
  39. }
  40. .featured-box:hover .featured-icon i{
  41. background: $preset;
  42. color: #fff;
  43. }
  44. .featured-center{
  45. text-align: center;
  46. .featured-icon{
  47. float: none;
  48. margin-bottom: 20px;
  49. }
  50. .border-icon{
  51. i{
  52. font-size: 30px;
  53. border: none;
  54. }
  55. }
  56. .featured-content{
  57. padding-left: 0;
  58. }
  59. }
  60. .featured-img{
  61. margin-bottom: 30px;
  62. .featured-content{
  63. background: #f5f5f5;
  64. padding: 15px;
  65. h4{
  66. font-size: 18px;
  67. margin-bottom: 10px;
  68. }
  69. }
  70. }
  71. .featured-box-item{
  72. margin-bottom: 40px;
  73. .featured-icon{
  74. float: left;
  75. i{
  76. width: 70px;
  77. height: 70px;
  78. color: $preset;
  79. border: 2px solid #f1f1f1;
  80. text-align: center;
  81. line-height: 70px;
  82. font-size: 30px;
  83. border-radius: 10px;
  84. transition: all 0.4s ease;
  85. -moz-transition: all 0.4s ease;
  86. -webkit-transition: all 0.4s ease;
  87. -o-transition: all 0.4s ease;
  88. }
  89. }
  90. .featured-content{
  91. padding-left: 88px;
  92. h4{
  93. font-size: 15px;
  94. text-transform: uppercase;
  95. margin-bottom: 10px;
  96. }
  97. }
  98. }
  99. .featured-box-item:hover .featured-icon i{
  100. background: $preset;
  101. color: #fff;
  102. }