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 601 B
Newer Older
/************ HEADER STYLE ***********/
Hugues's avatar
Hugues committed
.heroBanner {
  padding: 2.6rem 0; 
Hugues's avatar
Hugues committed
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; 
Hugues's avatar
Hugues committed
  background-color: var(--ifm-color-light-green);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 6vw),0 100%)
.container {
  height: 200px;
Hugues's avatar
Hugues committed
  display: flex;
  align-items: center;
  justify-content: center;
@media screen and (max-width: 966px) {
Hugues's avatar
Hugues committed
  .heroBanner {
    padding: 2rem;
  }
}

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