BCB Bank static website
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

95 linhas
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. 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. .service-content ul {
  71. border: 1px solid #d2d4d5;
  72. width: 25%;
  73. display: flex;
  74. flex-direction: column;
  75. justify-content: space-evenly;
  76. }
  77. .service-content ul li {
  78. list-style: none;
  79. padding: 10% 0;
  80. border-bottom: 1px solid #808285;
  81. color: #403e41;
  82. text-align: center;
  83. cursor: pointer;
  84. }
  85. .service-content ul li.active {
  86. background-color: #28aae2;
  87. color: white;
  88. }
  89. .service-content ul li:last-child {
  90. border-bottom: none;
  91. }
  92. /*# sourceMappingURL=service.css.map */