Skip to content
Snippets Groups Projects
Select Git revision
  • da31fee0fcd807315e741189f2d1fd21c7be5dc7
  • main default protected
  • feat/modify-environment
3 results

user.service.ts

Blame
  • LandingSection.module.scss 1.27 KiB
    @import "../../../utils";
    @import "../../../style/fonts.module";
    @import "../../../style/colors.module";
    
    .LandingSection {
      background-image: url('#{$assetPath}/curves/courbe_1.png');
      background-repeat: no-repeat;
      background-position: center;
      background-size: 100% 100%;
      min-height: 100vh;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: left;
      flex-wrap: wrap;
    
      .LeftSide {
        flex-basis: 50%;
    
        .Octopus {
          width: 55vw;
          height: 55vh;
        }
      }
    
      .RightSide {
        color: $primary_black;
        font-family: $primary_font;
        vertical-align: middle;
        flex-basis: 40%;
        margin-left: -15vw;
    
        .Title {
          font-size: 5vw;
          text-align: center;
    
          .Caption {
            font-size: 1.5vw;
          }
    
        }
      }
    
    }
    
    @media (max-width: 575.98px) {
      .LandingSection {
        flex-direction: column;
        text-align: center;
    
        padding-top: 0;
        min-height: 55vh;
    
        .LeftSide {
    
          .Octopus {
            width: 50vw;
            height: 30vh;
          }
        }
    
    
        .RightSide {
    
          text-align: center;
    
          .Title {
            font-size: 10vw;
    
            .Caption {
              font-size: 3vw;
              text-align: center;
            }
    
          }
        }
      }
    }
    
    
    @media (max-width: 320px) {
      .LandingSection {
        min-height: 50vh;
      }
    }