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.
 
 
 
 

78 rindas
1.5 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. }
  44. }
  45. ul {
  46. border: 1px solid $light_gray;
  47. width: 25%;
  48. display: flex;
  49. flex-direction: column;
  50. justify-content: space-evenly;
  51. li {
  52. list-style: none;
  53. padding: 10% 0;
  54. border-bottom: 1px solid $dark_gray;
  55. color: $dark_brown;
  56. text-align: center;
  57. cursor: pointer;
  58. &.active {
  59. background-color: $blue;
  60. color: white;
  61. }
  62. &:last-child {
  63. border-bottom: none;
  64. }
  65. }
  66. }
  67. }