暫無描述
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.

_main-slider.scss 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /********************************
  2. Main Slider
  3. ********************************/
  4. .slick-slider {
  5. background: transparent;
  6. }
  7. .slider-height {
  8. height: 855px;
  9. @include max-screen(1200, 1400) {
  10. height: 595px;
  11. }
  12. @include max-screen(992, 1199) {
  13. height: 595px;
  14. }
  15. @include max-screen(768, 991) {
  16. height: 450px;
  17. }
  18. @include max-screen(767) {
  19. height: 300px;
  20. }
  21. @include max-screen(576, 767) {
  22. height: 450px;
  23. }
  24. }
  25. .slider-height2 {
  26. height: 714px;
  27. @include max-screen(1200, 1400) {
  28. height: 600px;
  29. }
  30. @include max-screen(992, 1199) {
  31. height: 480px;
  32. }
  33. @include max-screen(768, 991) {
  34. height: 400px;
  35. }
  36. @include max-screen(767) {
  37. height: 300px;
  38. }
  39. @include max-screen(576, 767) {
  40. height: 350px;
  41. }
  42. }
  43. .slider-content-width {
  44. max-width: 52%;
  45. @include max-screen(768, 1500) {
  46. max-width: 52%;
  47. }
  48. @include max-screen(576) {
  49. max-width: 100%;
  50. }
  51. }
  52. .slider-content {
  53. .title {
  54. font-weight: 400;
  55. font-size: 65px;
  56. text-transform: capitalize;
  57. span {
  58. opacity: 0;
  59. }
  60. @include max-screen(1200, 1600) {
  61. font-size: 50px;
  62. }
  63. @include max-screen(992, 1199) {
  64. font-size: 45px;
  65. }
  66. @include max-screen(768, 991) {
  67. font-size: 35px;
  68. }
  69. @include max-screen(767) {
  70. font-size: 30px;
  71. }
  72. }
  73. .text {
  74. font-size: 20px;
  75. color: $color-dark;
  76. text-transform: uppercase;
  77. margin-bottom: 15px;
  78. opacity: 0;
  79. @include max-screen(768, 991) {
  80. font-size: 16px;
  81. }
  82. @include max-screen(767) {
  83. font-size: 18px;
  84. }
  85. &.mb-25 {
  86. @include max-screen(767) {
  87. margin-bottom: 15px;
  88. }
  89. }
  90. }
  91. .btn {
  92. opacity: 0;
  93. &.mt-45 {
  94. @include max-screen(767) {
  95. margin-top: 30px;
  96. }
  97. }
  98. }
  99. }
  100. /********************************
  101. # main slider End
  102. ********************************/