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.
 
 
 
 

90 rivejä
1.7 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. background-color: $lightest_gray;
  35. min-height: 70vh;
  36. }
  37. object {
  38. overflow-x: hidden;
  39. display: none;
  40. width: 100%;
  41. height: 100%;
  42. &.active {
  43. display: block;
  44. @media screen and (max-width: 1024px) {
  45. display: none;
  46. }
  47. }
  48. }
  49. iframe {
  50. display: none;
  51. @media screen and (max-width: 1024px) {
  52. &.active {
  53. display: block;
  54. }
  55. }
  56. }
  57. ul {
  58. width: 25%;
  59. li {
  60. list-style: none;
  61. padding: 10% 0;
  62. border-bottom: 2px solid white;
  63. text-align: center;
  64. cursor: pointer;
  65. background-color: #fcfcfc;
  66. color: #808285;
  67. &.active {
  68. background-color: $blue;
  69. color: white;
  70. }
  71. &:last-child {
  72. border-bottom: none;
  73. }
  74. }
  75. }
  76. }