Skip to content
Snippets Groups Projects
Select Git revision
  • 922ca556d8370516a9e5d549bd3a6a7a7ace3028
  • master default protected
  • performance_fix
  • fix-performance
  • feat-add_docker
5 results

CloudSection.module.scss

Blame
  • CloudSection.module.scss 837 B
    @import "../../../utils";
    @import "../../../style/fonts";
    @import "../../../style/colors";
    
    .CloudSection {
      background-image: url('#{$assetPath}/curves/courbe_2.png');
      background-repeat: no-repeat;
      background-position: center;
      background-size: 100% 100%;
      min-height: 100vh;
      vertical-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      font-family: $primary_font;
      font-weight: $primary_font_weight;
    
      .UpperBlock {
        padding-top: 5%;
        font-size: 2.5em;
        max-width: 40%;
        text-align: center;
    
      }
    
      .Cloud {
        padding-top: 5%;
        max-width: 50vw;
        max-height: 60vh;
      }
    
      .BottomBlock {
        padding-top: 5%;
        font-size: 2rem;
        max-width: 30%;
        line-height: 2.5rem;
    
        .Caption {
          padding-top: 10px;
          font-size: 1.5rem;
          max-width: 60%;
    
        }
      }
    }