Não pode escolher mais do que 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.
|
- @import '_colors';
- @import 'custom_fonts';
-
- .banner {
- height: 30vh;
- background-image: url('../images/cover-image.jpg');
- background-size: cover;
- background-repeat: no-repeat;
- display: flex;
- justify-content: center;
- position: relative;
-
- &:after {
- content: '';
- width: 100%;
- height: 100%;
- position: absolute;
- background-color: rgba($color: $dark_brown, $alpha: 0.6)
- }
-
- h3 {
- text-align: center;
- align-self: center;
- font-size: $heading_size;
- color: white;
- z-index: 1;
- }
- }
-
- .service-content {
- width: 90%;
- margin: 60px auto;
- display: flex;
- justify-content: space-between;
-
- .scene-container {
- overflow: hidden;
- width: 70%;
- }
-
- iframe {
- overflow-x: hidden;
- display: none;
-
- &.active {
- display: block;
- }
- }
-
- ul {
- border: 1px solid $light_gray;
- width: 25%;
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
-
- li {
- list-style: none;
- padding: 25px 0;
- border-bottom: 1px solid $dark_gray;
- color: $dark_brown;
- text-align: center;
- cursor: pointer;
-
- &.active {
- background-color: $blue;
- color: white;
- }
-
- &:last-child {
- border-bottom: none;
- }
- }
- }
- }
|