BCB Bank static website
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

92 řádky
1.9 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. }
  60. .service-content iframe {
  61. overflow-x: hidden;
  62. display: none;
  63. }
  64. .service-content iframe.active {
  65. display: block;
  66. }
  67. .service-content ul {
  68. border: 1px solid #d2d4d5;
  69. width: 25%;
  70. display: flex;
  71. flex-direction: column;
  72. justify-content: space-evenly;
  73. }
  74. .service-content ul li {
  75. list-style: none;
  76. padding: 25px 0;
  77. border-bottom: 1px solid #808285;
  78. color: #403e41;
  79. text-align: center;
  80. cursor: pointer;
  81. }
  82. .service-content ul li.active {
  83. background-color: #28aae2;
  84. color: white;
  85. }
  86. .service-content ul li:last-child {
  87. border-bottom: none;
  88. }
  89. /*# sourceMappingURL=service.css.map */