BCB Bank static website
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.
 
 
 
 

52 lines
1.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. .service-content {
  27. width: 90%;
  28. margin: 60px auto;
  29. display: flex;
  30. min-height: 42vh;
  31. justify-content: space-between;
  32. ul {
  33. width: 100%;
  34. display: flex;
  35. justify-content: space-between;
  36. align-self: flex-start;
  37. li {
  38. list-style: none;
  39. padding: 30px;
  40. text-align: center;
  41. cursor: pointer;
  42. background-color: #fcfcfc;
  43. color: #808285;
  44. }
  45. }
  46. }