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
education.css 5.71 KiB
Newer Older
peter_rabbit's avatar
peter_rabbit committed
#education-page h1 {
  margin: 15px 40px 0;
  font-size: 25px;
}
#education-page .edu-philo {
  margin: 15px 40px 15px 100px;
  max-width: 800px;
  font-style: italic;
}
#education-page .title-banner {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 300px;
  background-image: url("../assets/images/glitch_meta_level3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0% 90%;
}
#education-page .title-banner h2 {
  color: white;
  font-size: 2.5em;
  margin: 40px;
  text-shadow: 0 0 8px #000;
}
#education-page .section-contents {
  margin: 20px 40px 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  height: auto;
}
#education-page .section-contents .full-row {
  grid-column: 1/span 2;
}
#education-page .section-contents .practical-infos {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../assets/images/wallpaper_binary_light.png");
  padding: 20px;
}
#education-page .section-contents .practical-infos .info-item {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 20px;
}
#education-page .section-contents .practical-infos .info-item strong {
  margin-bottom: 10px;
}
#education-page .section-contents .practical-infos .info-item span,
#education-page .section-contents .practical-infos .info-item a {
  font-size: 14px;
  text-decoration: none;
}
#education-page .section-contents ul.learning-themes {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  gap: 20px 30px;
peter_rabbit's avatar
peter_rabbit committed
  flex-wrap: wrap;
}
#education-page .section-contents ul.learning-themes li.learning-theme {
  width: 250px;
  height: 140px;
peter_rabbit's avatar
peter_rabbit committed
  position: relative;
}
#education-page .section-contents ul.learning-themes li.learning-theme.crea2d {
  background: url("../../../assets/images/learning_theme_sound.jpg") no-repeat;
  background-size: cover;
#education-page .section-contents ul.learning-themes li.learning-theme.sound {
  background: url("../../../assets/images/learning_theme_sound.jpg") no-repeat;
  background-size: cover;
#education-page .section-contents ul.learning-themes li.learning-theme.coding {
  background: url("../../../assets/images/learning_theme_sound.jpg") no-repeat;
  background-size: cover;
#education-page .section-contents ul.learning-themes li.learning-theme.math {
  background: url("../../../assets/images/learning_theme_sound.jpg") no-repeat;
  background-size: cover;
#education-page .section-contents ul.learning-themes li.learning-theme.linux {
  background: url("../../../assets/images/learning_theme_sound.jpg") no-repeat;
  background-size: cover;
}
#education-page .section-contents ul.learning-themes li.learning-theme.team {
  background: url("../../../assets/images/learning_theme_sound.jpg") no-repeat;
  background-size: cover;
}
#education-page .section-contents ul.learning-themes li.learning-theme.conception {
  background: url("../../../assets/images/learning_theme_sound.jpg") no-repeat;
  background-size: cover;
}
#education-page .section-contents ul.learning-themes li.learning-theme.write {
  background: url("../../../assets/images/learning_theme_sound.jpg") no-repeat;
  background-size: cover;
}
#education-page .section-contents ul.learning-themes li.learning-theme.web {
  background: url("../../../assets/images/learning_theme_sound.jpg") no-repeat;
  background-size: cover;
}
#education-page .section-contents ul.learning-themes li.learning-theme.general-pc {
  background: url("../../../assets/images/learning_theme_sound.jpg") no-repeat;
  background-size: cover;
}
#education-page .section-contents ul.learning-themes li.learning-theme .title {
  color: white;
  padding: 10px 20px;
  display: block;
}
#education-page .section-contents ul.learning-themes li.learning-theme .details {
  background-color: #fffd;
  position: absolute;
  top: 40px;
  left: 40px;
  width: 300px;
  height: auto;
  max-height: 0;
  visibility: hidden;
  z-index: 1;
  transition: max-height 0.6s;
  padding: 20px;
  box-shadow: 0 2px 12px 6px #0001;
  overflow: hidden;
peter_rabbit's avatar
peter_rabbit committed
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#education-page .section-contents ul.learning-themes li.learning-theme .details .title {
  color: initial;
  padding: 0;
}
#education-page .section-contents ul.learning-themes li.learning-theme .details .comment {
  font-style: italic;
}
#education-page .section-contents ul.learning-themes li.learning-theme .details ul {
  list-style-type: disc;
  font-size: 14px;
  margin-left: 10px;
}
#education-page .section-contents ul.learning-themes li.learning-theme:hover .details {
  max-height: 1000px;
  visibility: visible;
peter_rabbit's avatar
peter_rabbit committed
}
#education-page .section-contents .infos-inscriptions {
  display: flex;
  gap: 40px;
peter_rabbit's avatar
peter_rabbit committed
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../assets/images/wallpaper_binary_light.png");
  padding: 20px;
peter_rabbit's avatar
peter_rabbit committed
}
#education-page .section-contents .infos-inscriptions .groups,
#education-page .section-contents .infos-inscriptions .pricing {
peter_rabbit's avatar
peter_rabbit committed
  background-color: white;
peter_rabbit's avatar
peter_rabbit committed
  padding: 20px;
  display: flex;
  flex-direction: column;
}
#education-page .section-contents .infos-inscriptions .groups h3,
#education-page .section-contents .infos-inscriptions .pricing h3 {
peter_rabbit's avatar
peter_rabbit committed
  margin: 0;
peter_rabbit's avatar
peter_rabbit committed
}
#education-page .section-contents .infos-inscriptions .groups .table-wrapper table,
#education-page .section-contents .infos-inscriptions .pricing .table-wrapper table {
  border: 1px solid #dde;
  border-collapse: collapse;
}
#education-page .section-contents .infos-inscriptions .groups .table-wrapper table td,
#education-page .section-contents .infos-inscriptions .pricing .table-wrapper table td {
  border: 1px solid #dde;
  padding: 10px 20px;
}

/*# sourceMappingURL=education.css.map */