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

VscodeSection.module.scss

Blame
  • VscodeSection.module.scss 726 B
    @import "../../../utils";
    @import "../../../style/fonts";
    @import "../../../style/colors";
    
    .VscodeSection {
      background: $primary_lightblue;
      background-size: 100% 100%;
      position: relative;
      min-height: 85vh;
    
      .LeftSide {
        padding-top: 15%;
        padding-left: 30%;
    
        .VscodeImage {
          max-width: 40vw;
          max-height: 45vh;
        }
      }
    
      .RightSide {
        color: $primary_black;
        font-weight: $primary_font_weight;
        font-family: $primary_font;
        padding-top: 35%;
        padding-right: 30%;
        text-align: center;
        vertical-align: middle;
        line-height: 4em;
    
        .Title {
    
          font-size: 3rem;
    
        }
        .Caption {
          font-size: 1.5em;
          line-height: 1em;
          color: white;
        }
      }
    
    }