BCB Bank static website
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

164 wiersze
3.0 KiB

  1. @import '_colors';
  2. @import 'custom_fonts';
  3. .banner {
  4. height: 30vh;
  5. background-image: url('../images/cover-image.jpg');
  6. background-size: cover;
  7. background-repeat: no-repeat;
  8. display: flex;
  9. justify-content: center;
  10. position: relative;
  11. &:after {
  12. content: '';
  13. width: 100%;
  14. height: 100%;
  15. position: absolute;
  16. background-color: rgba($color: $dark_brown, $alpha: 0.6)
  17. }
  18. h3 {
  19. text-align: center;
  20. align-self: center;
  21. font-size: $heading_size;
  22. color: white;
  23. z-index: 1;
  24. }
  25. }
  26. .about-content {
  27. margin: 50px auto;
  28. line-height: 1.8;
  29. letter-spacing: 0.8px;
  30. color: #808285;
  31. border-bottom: 1px solid #f1f1f1;
  32. .inner-container {
  33. display: flex;
  34. justify-content: space-between;
  35. width: 90%;
  36. margin: 0 auto;
  37. @media screen and (max-width: 1024px) {
  38. flex-direction: column;
  39. }
  40. .description {
  41. width: 60%;
  42. align-self: center;
  43. display: flex;
  44. justify-content: space-between;
  45. flex-direction: column;
  46. @media screen and (max-width: 1024px) {
  47. width: 100%;
  48. }
  49. p {
  50. width: 100%;
  51. }
  52. marked {
  53. color: $blue;
  54. }
  55. .heading {
  56. font-weight: bold;
  57. font-size: $heading_size;
  58. font-family: archivo-black;
  59. color: $dark_brown;
  60. }
  61. }
  62. }
  63. figure {
  64. width: 37%;
  65. align-self: center;
  66. display: flex;
  67. height: 50vh;
  68. @media screen and (max-width: 1024px) {
  69. width: 100%;
  70. }
  71. img {
  72. width: 100%;
  73. align-self: center;
  74. height: 100%;
  75. object-fit: cover;
  76. object-position: top;
  77. }
  78. }
  79. p {
  80. width: 90%;
  81. margin: 0 auto 0;
  82. padding-bottom: 50px;
  83. @media screen and (max-width: 1024px) {
  84. margin: 0 auto;
  85. }
  86. }
  87. }
  88. #our-team {
  89. width: 90%;
  90. margin: 30px auto 100px;
  91. h3 {
  92. font-size: $heading_size;
  93. color: $dark_brown;
  94. text-align: center;
  95. font-family: archivo-black;
  96. marked {
  97. color: $blue;
  98. display: inline;
  99. }
  100. }
  101. marked {
  102. color: $blue;
  103. padding: 10px 0 0;
  104. text-align: center;
  105. display: block;
  106. font-weight: bold;
  107. }
  108. .owl-team {
  109. margin: 50px 0;
  110. }
  111. .section-container {
  112. margin: 0 20px;
  113. }
  114. figure {
  115. width: 100%;
  116. display: block;
  117. margin: 0 auto;
  118. img {
  119. width: 100%;
  120. }
  121. }
  122. p {
  123. text-align: center;
  124. margin-top: 10px;
  125. }
  126. .owl-team-btn {
  127. margin: 20px auto;
  128. text-align: center;
  129. padding: 20px 0;
  130. i {
  131. font-size: 16px;
  132. padding: 0 10px;
  133. color: $blue;
  134. cursor: pointer;
  135. }
  136. }
  137. }