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.
 
 
 
 

108 rivejä
2.2 KiB

  1. @font-face {
  2. src: url("fonts/Archivo_Black/ArchivoBlack-Regular.ttf") format("truetype");
  3. font-family: archivo-black;
  4. font-style: normal;
  5. }
  6. @font-face {
  7. src: url("fonts/Open_Sans/OpenSans-Bold.ttf") format("truetype");
  8. font-family: open-sans;
  9. font-weight: bolder;
  10. }
  11. @font-face {
  12. src: url("fonts/Open_Sans/OpenSans-SemiBold.ttf") format("truetype");
  13. font-family: open-sans;
  14. font-weight: bold;
  15. }
  16. @font-face {
  17. src: url("fonts/Open_Sans/OpenSans-Regular.ttf") format("truetype");
  18. font-family: open-sans;
  19. font-style: normal;
  20. }
  21. @font-face {
  22. src: url("fonts/Open_Sans/OpenSans-LightItalic.ttf") format("truetype");
  23. font-family: open-sans;
  24. font-weight: normal;
  25. font-style: italic;
  26. }
  27. .banner {
  28. height: 30vh;
  29. background-image: url("../images/cover-image.jpg");
  30. background-size: cover;
  31. background-repeat: no-repeat;
  32. display: flex;
  33. justify-content: center;
  34. position: relative;
  35. }
  36. .banner:after {
  37. content: "";
  38. width: 100%;
  39. height: 100%;
  40. position: absolute;
  41. background-color: rgba(64, 62, 65, 0.6);
  42. }
  43. .banner h3 {
  44. text-align: center;
  45. align-self: center;
  46. font-size: 36px;
  47. color: white;
  48. z-index: 1;
  49. }
  50. .service-content {
  51. width: 90%;
  52. margin: 60px auto;
  53. display: flex;
  54. justify-content: space-between;
  55. }
  56. .service-content .scene-container {
  57. overflow: hidden;
  58. width: 70%;
  59. background-color: #f0f0f0;
  60. }
  61. .service-content object {
  62. overflow-x: hidden;
  63. display: none;
  64. width: 100%;
  65. height: 100%;
  66. }
  67. .service-content object.active {
  68. display: block;
  69. }
  70. @media screen and (max-width: 1024px) {
  71. .service-content object.active {
  72. display: none;
  73. }
  74. }
  75. .service-content iframe {
  76. display: none;
  77. }
  78. @media screen and (max-width: 1024px) {
  79. .service-content iframe.active {
  80. display: block;
  81. }
  82. }
  83. .service-content ul {
  84. width: 25%;
  85. display: flex;
  86. flex-direction: column;
  87. justify-content: space-evenly;
  88. }
  89. .service-content ul li {
  90. list-style: none;
  91. padding: 10% 0;
  92. border-bottom: 2px solid white;
  93. text-align: center;
  94. cursor: pointer;
  95. background-color: #fcfcfc;
  96. color: #808285;
  97. }
  98. .service-content ul li.active {
  99. background-color: #28aae2;
  100. color: white;
  101. }
  102. .service-content ul li:last-child {
  103. border-bottom: none;
  104. }
  105. /*# sourceMappingURL=service.css.map */