Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_iconbox.scss 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*--------------------------------------------------------------
  2. 11. IconBox
  3. ----------------------------------------------------------------*/
  4. .cs_iconbox.cs_style_1 {
  5. padding-left: 70px;
  6. .cs_iconbox_icon {
  7. width: 55px;
  8. height: 55px;
  9. position: absolute;
  10. left: 0;
  11. top: 7px;
  12. transition: all 0.5s cubic-bezier(0.28, 1.84, 0.55, -0.11);
  13. }
  14. .cs_iconbox_title {
  15. margin-bottom: 2px;
  16. }
  17. &:hover {
  18. .cs_iconbox_icon {
  19. color: $accent;
  20. transform: scale(1.1);
  21. }
  22. }
  23. }
  24. .cs_iconbox.cs_style_2 {
  25. background-color: $white;
  26. box-shadow: 0px 0px 10px 1px rgba(160, 160, 160, 0.25);
  27. padding: 35px 35px 30px;
  28. transition: all 0.5s ease;
  29. @media (max-width: 1199px) {
  30. padding: 35px 25px 30px;
  31. }
  32. .cs_iconbox_icon {
  33. width: 76px;
  34. height: 52px;
  35. margin-bottom: 15px;
  36. }
  37. .cs_iconbox_title {
  38. margin-bottom: 11px;
  39. }
  40. &:hover {
  41. transform: scale(1.03) translateY(6px);
  42. }
  43. }
  44. .cs_iconbox.cs_style_3 {
  45. display: flex;
  46. align-items: center;
  47. gap: 25px;
  48. @media (max-width: 400px) {
  49. gap: 14px;
  50. }
  51. @media (max-width: 350px) {
  52. br {
  53. display: none;
  54. }
  55. }
  56. .cs_iconbox_icon {
  57. width: 88px;
  58. height: 88px;
  59. border: 1px solid $primary;
  60. border-radius: 50%;
  61. display: flex;
  62. align-items: center;
  63. justify-content: center;
  64. flex: none;
  65. }
  66. .cs_iconbox_title {
  67. margin-bottom: 8px;
  68. }
  69. .cs_iconbox_info {
  70. flex: 1;
  71. }
  72. }