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
style.css 34.1 KiB
Newer Older
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}
body * {
  box-sizing: border-box;
  color: #35393c;
  line-height: 1.3em;
}
body ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
body a {
  color: #4baabb;
  text-decoration: none;
}
body a:hover {
  color: #72e3f0;
}
body blue {
  color: #4baabb;
}
body red {
  color: #9c3030;
}
body green {
  color: #368736;
}
body emoji {
  font-style: initial;
  font-size: 25px;
}
body .bg-blue {
  background-color: #4baabb;
  color: white;
}
body .bg-dark {
  background-color: #3c4144;
  color: #aabbc8;
}
body #seo-title {
  visibility: hidden;
}
body img.pixelated {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
main .warning-banner {
  background: url("/assets/images/wallpaper_warning.svg");
  width: 100%;
  height: 40px;
  padding: 20px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
main .warning-banner strong {
  font-size: 18px;
  color: #1c3db2;
}
main .image-carousel {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: black;
  position: relative;
}
main .image-carousel img {
  position: absolute;
  max-width: 100%;
  max-height: 400px;
}
main .image-carousel .carousel-bullets {
  position: absolute;
  bottom: 0;
  padding: 20px;
  display: flex;
  gap: 10px;
}
main .image-carousel .carousel-bullets .bullet {
  cursor: pointer;
  width: 8px;
  height: 8px;
  background-color: #6b7880;
  border-radius: 100%;
  box-shadow: 0 0 3px black;
}
main .image-carousel .carousel-bullets .bullet.active {
  background-color: #d4d9dd;
}
@media screen and (max-width: 900px) {
  main .image-carousel img {
    max-height: 100%;
  }
  main .image-carousel .carousel-bullets {
    gap: 30px;
  }
  main .image-carousel .carousel-bullets .bullet {
    width: 12px;
    height: 12px;
  }
}
main header {
  width: 100%;
  background-color: white;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 10;
}
main header nav {
  display: flex;
  align-items: center;
  height: 60px;
}
main header nav .home {
  margin: 0 10px;
}
main header nav .home a {
  display: flex;
  align-items: center;
  gap: 10px;
}
main header nav .home a img {
  height: 40px;
  width: auto;
}
main header nav .home a img.logo-text {
  width: 120px;
  height: auto;
}
main header nav ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  height: 100%;
}
main header nav ul li {
  position: relative;
}
main header nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 20px;
  color: #96a5ae;
  font-weight: 800;
  text-decoration: none;
}
main header nav ul li .submenu {
  visibility: hidden;
  overflow: hidden;
  position: absolute;
  height: auto;
  max-height: 0;
  transition: max-height 0.6s;
  top: 100%;
  left: 50%;
  flex-direction: column;
  background-color: white;
  white-space: nowrap;
}
main header nav ul li.active a {
  color: #3c4144;
  border-bottom: 3px solid;
}
main header nav ul li:hover a {
  color: #3c4144;
}
main header nav ul li:hover .submenu {
  visibility: unset;
  max-height: 1000px;
}
main header nav ul li:hover .submenu a {
  color: #96a5ae;
  border: none;
}
main header nav ul li:hover .submenu li:hover a {
  color: #3c4144;
}
main header nav .burger {
  display: none;
}
@media screen and (max-width: 560px) {
  main header nav {
    justify-content: space-between;
Loading
Loading full blame...