BCB Bank static website
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

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