Skip to content
Snippets Groups Projects
style.css 35.7 KiB
Newer Older
  • Learn to ignore specific revisions
  • 
    #visualization {
      width: 100%;
      height: auto;
      padding: 10px;
      border-radius: 8px;
    
      overflow: hidden;
    }
    
    #slider-container {
      margin-top: 15px;
      text-align: center;
    }
    
    .details .row {
      align-items: center; /* Alignement vertical des colonnes */
      margin: 0;
    }
    
    #sleep-analysis h3 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #333333;
    }
    
    #sleep-analysis p {
      font-size: 16px;
      line-height: 1.6;
      color: #555555;
    }
    
    #sleep-analysis ul {
      padding-left: 20px;
      list-style-type: none; /* Supprimez les puces */
    }
    
    #sleep-analysis ul li {
      margin-bottom: 10px;
    }
    
    #sleep-analysis ul li i {
      color: #0f7e06; /* Couleur verte pour les icônes */
      margin-right: 10px;
    }
    
    #tooltip {
      position: absolute;
      background-color: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 8px;
      border-radius: 5px;
      font-size: 12px;
      pointer-events: none;
      display: none;
    }