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.

_base.scss 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /* Google Fonts */
  2. @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  3. /*---------------------------*
  4. #Template default CSS
  5. *----------------------------*/
  6. body {
  7. background: $color-white;
  8. font-family: $poppins;
  9. font-weight: fontweight(regular);
  10. font-size: 14px;
  11. line-height: $base-line-height;
  12. color: #565656;
  13. overflow-x: hidden;
  14. }
  15. .container{
  16. @include max-screen(1199){
  17. max-width: 100%;
  18. }
  19. }
  20. h1,
  21. h2,
  22. h3,
  23. h4,
  24. h5,
  25. h6 {
  26. font-family: $raleway;
  27. margin: 0;
  28. line-height: 1.25;
  29. color: $color-dark;
  30. }
  31. p {
  32. margin: $paragraph-spacing;
  33. line-height: 1.715;
  34. }
  35. a,
  36. button {
  37. text-decoration: none;
  38. color: inherit;
  39. }
  40. button {
  41. background: transparent;
  42. border: 0;
  43. padding: 0;
  44. outline: 0;
  45. }
  46. a,
  47. button,
  48. img,
  49. input {
  50. @include transition(0.3s);
  51. }
  52. a {
  53. &:focus {
  54. text-decoration: none;
  55. outline: 0;
  56. }
  57. &:hover {
  58. text-decoration: none;
  59. color: $theme-color;
  60. }
  61. }
  62. button,
  63. input[type="submit"] {
  64. cursor: pointer;
  65. outline: 0 !important;
  66. }
  67. img {
  68. max-width: 100%;
  69. }
  70. :focus {
  71. outline: 0;
  72. }
  73. ul {
  74. padding: 0;
  75. margin: 0;
  76. }
  77. li {
  78. list-style: none;
  79. }
  80. span {
  81. display: inline-block;
  82. }
  83. span {
  84. &.separator {
  85. color: $separator-color;
  86. margin: 0 8px;
  87. line-height: 1;
  88. font-size: 14px;
  89. }
  90. }
  91. .zoom-in img {
  92. @include transition(0.3s linear);
  93. }
  94. .zoom-in:hover img {
  95. @include transform(scale(1.045) rotate(0.05deg));
  96. }
  97. .theme-border {
  98. border: 2px solid $theme-color !important;
  99. }
  100. .theme-border2 {
  101. border: 2px solid $theme-color2 !important;
  102. }
  103. hr.hr {
  104. background-color: $border-color;
  105. opacity: 1;
  106. }
  107. span.required {
  108. color: $theme-color;
  109. }
  110. .theme1 {
  111. .hover-color {
  112. &:hover {
  113. color: $theme-color !important;
  114. }
  115. }
  116. }
  117. .w-md-50 {
  118. width: 100%;
  119. max-width: 100%;
  120. @include min-screen(768) {
  121. max-width: 50%;
  122. }
  123. }