Skip to content
Snippets Groups Projects
Select Git revision
  • 649eeee8f01b309c5a101ec33ba3a136dffb19cc
  • master default protected
  • schwifi
  • eckbalu-master-patch-41181
  • halof
  • our-team
  • 0.12.10 protected
  • 0.12.9 protected
  • 0.12.8 protected
  • 0.12.7 protected
  • 0.12.6 protected
  • 0.12.5 protected
  • 0.12.4 protected
  • 0.12.3 protected
  • 0.12.2 protected
  • 0.12.1 protected
  • 0.12.0 protected
  • 0.11.5 protected
  • 0.11.4 protected
  • 0.11.3 protected
  • 0.11.2 protected
  • 0.11.1 protected
  • 0.11.0 protected
  • 0.10.6 protected
  • 0.10.5 protected
  • 0.10.4 protected
26 results

index.module.css

Blame
  • index.module.css 876 B
    /**
     * CSS files with the .module.css suffix will be treated as CSS modules
     * and scoped locally.
     */
    
    .heroBanner {
      padding: 4rem 0;
      overflow: hidden;
      color: white;
      background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) , url("/static/img/webcover_nologo.png");
      background-size: cover;
    }
    
    .heroTitle {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      text-align: center;
    }
    
    .heroTitle > h1 {
      margin-bottom: 0;
    }
    
    @media screen and (max-width: 966px) {
      .heroBanner {
        padding: 2rem;
      }
    
      .heroContainer {
        flex-direction: column;
        justify-content: center;
      }
    
      .heroTitle {
        align-items: center;
      }
    }
    
    .heroContainer {
      display: flex;
      justify-content: flex-start;
      align-items: center;
    }
    
    .hero__title {
      margin-bottom: 0;
    }
    
    .hero__subtitle {
      font-size: 18px;
    }