Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
index.module.css 698 B
/************ Header style ***********/

.hero__subtitle {
  width: 90%;
  text-align: center;
  margin: auto;
  padding-bottom: 20px;
}

.heroBanner {
  padding: 2.6rem 0; 
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; 
  background-color: var(--ifm-color-light-green);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 6vw),0 100%)
}

.container {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
} 

@media screen and (max-width: 966px) {
  .heroBanner {
    padding: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .heroBanner {
    padding: 1rem;
  }
}