BCB Bank static website
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

87 строки
1.6 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. }
  45. }
  46. iframe {
  47. display: none;
  48. @media screen and (max-width: 1024px) {
  49. &.active {
  50. display: block;
  51. }
  52. }
  53. }
  54. ul {
  55. width: 25%;
  56. li {
  57. list-style: none;
  58. padding: 10% 0;
  59. border-bottom: 2px solid white;
  60. text-align: center;
  61. cursor: pointer;
  62. background-color: #fcfcfc;
  63. color: #808285;
  64. &.active {
  65. background-color: $blue;
  66. color: white;
  67. }
  68. &:last-child {
  69. border-bottom: none;
  70. }
  71. }
  72. }
  73. }