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.
 
 
 
 

75 line
1.5 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. justify-content: space-between;
  31. .scene-container {
  32. overflow: hidden;
  33. width: 70%;
  34. }
  35. iframe {
  36. overflow-x: hidden;
  37. display: none;
  38. &.active {
  39. display: block;
  40. }
  41. }
  42. ul {
  43. border: 1px solid $light_gray;
  44. width: 25%;
  45. display: flex;
  46. flex-direction: column;
  47. justify-content: space-evenly;
  48. li {
  49. list-style: none;
  50. padding: 25px 0;
  51. border-bottom: 1px solid $dark_gray;
  52. color: $dark_brown;
  53. text-align: center;
  54. cursor: pointer;
  55. &.active {
  56. background-color: $blue;
  57. color: white;
  58. }
  59. &:last-child {
  60. border-bottom: none;
  61. }
  62. }
  63. }
  64. }