Dernière modification le il y a 2 semaines
par Cyrilhubeau

Common.css

Version datée du 6 mai 2025 à 09:43 par Cyrilhubeau (discussion | contributions) (Page créée avec « →‎Le CSS placé ici sera appliqué à tous les habillages. : #notifications-btn{ display:none; } .CategoryTreeTag { display: flex; justify-content: center; align-items: flex-start; position: relative; margin: 40px auto; padding: 40px 20px; overflow-x: auto; } .CategoryTreeTag::before { content: ''; position: absolute; top: 60px; left: 0; right: 0; height: 4px; background-color: #007BFF; →‎ligne horizontale : z-index: 0; } .Ca... »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)

Note : après avoir publié vos modifications, il se peut que vous deviez forcer le rechargement complet du cache de votre navigateur pour voir les changements.

  • Firefox / Safari : maintenez la touche Maj (Shift) en cliquant sur le bouton Actualiser ou appuyez sur Ctrl + F5 ou Ctrl + R (⌘ + R sur un Mac).
  • Google Chrome : appuyez sur Ctrl + Maj + R (⌘ + Shift + R sur un Mac).
  • Internet Explorer / Edge : maintenez la touche Ctrl en cliquant sur le bouton Actualiser ou pressez Ctrl + F5.
  • Opera : appuyez sur Ctrl + F5.
/* Le CSS placé ici sera appliqué à tous les habillages. */
#notifications-btn{
	display:none;
}

.CategoryTreeTag {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  margin: 40px auto;
  padding: 40px 20px;
  overflow-x: auto;
}

.CategoryTreeTag::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #007BFF; /* ligne horizontale */
  z-index: 0;
}

.CategoryTreeSection {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 40px;
  z-index: 1;
}

.CategoryTreeSection::before {
  content: '';
  position: absolute;
  top: 50px;
  width: 16px;
  height: 16px;
  background-color: #007BFF;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 2px #007BFF;
  z-index: 2;
}
.CategoryTreeItem{
	padding: 10px;
	background-color: aliceblue;
	border-radius: 20px;
}
.CategoryTreePageBullet{
	display:none;
}