/* Styles de base */ :root { --primary-color: #3A506B; /* Bleu métallique */ --secondary-color: #B0BEC5; /* Gris acier */ --accent-color: #D68C45; /* Cuivre */ } body { font-family: Arial, sans-serif; margin: 0; padding: 0; display: flex; height: 100vh; background-color: #e9edf1; flex-direction: column; } /* 4NK NAVBAR */ .brand-logo { text-align: center; font-size: 1.5em; font-weight: bold; } .nav-wrapper { position: fixed; background: radial-gradient(circle, white, var(--primary-color)); display: flex; justify-content: space-between; align-items: center; color: #37474F; height: 9vh; width: 100vw; left: 0; top: 0; box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12); } /* Icônes de la barre de navigation */ .nav-right-icons { display: flex; } .notification-bell, .burger-menu { height: 20px; width: 20px; margin-right: 1rem; cursor: pointer; } .notification-container { position: relative; /* Conserve la position pour le notification-board */ display: inline-flex; align-items: center; } .notification-board { position: absolute; /* Position absolue pour le placer par rapport au container */ top: 40px; right: 0; background-color: white; border: 1px solid #ccc; padding: 10px; width: 200px; max-height: 300px; overflow-y: auto; /* Scroll si les notifications dépassent la taille */ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); z-index: 10; /* Définit la priorité d'affichage au-dessus des autres éléments */ display: none; /* Par défaut, la notification est masquée */ } .notification-item{ cursor: pointer; } .notification-badge { position: absolute; top: -18px; right: 35px; background-color: red; color: white; border-radius: 50%; padding: 4px 8px; font-size: 12px; display: none; /* S'affiche seulement lorsqu'il y a des notifications */ z-index: 10; } /* Par défaut, le menu est masqué */ #menu { display: none; /* Menu caché par défaut */ transition: display 0.3s ease-in-out; } .burger-menu { cursor: pointer; } /* Icône burger */ #burger-icon { cursor: pointer; } .menu-content { display: none; position: absolute; top: 3.4rem; right: 1rem; background-color: white; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); border-radius: 5px; overflow: hidden; } .menu-content a { display: block; padding: 10px 20px; text-decoration: none; color: #333; border-bottom: 1px solid #e0e0e0; &:hover { background-color: rgba(26, 28, 24, .08); } } .menu-content a:last-child { border-bottom: none; } /* Ajustement pour la barre de navigation fixe */ .container { display: flex; flex: 1; height: calc(100% - 4vh); margin-top: 4vh; margin-left: -1%; text-align: left; } /* Liste des groupes */ .group-list { width: 25%; background-color: #1f2c3d; color: white; padding: 20px; box-sizing: border-box; overflow-y: auto; border-right: 2px solid #2c3e50; flex-shrink: 0; padding-right: 10px; } .group-list ul { cursor: pointer; list-style: none; padding: 0; padding-right: 10px; margin-left: 20px; } .group-list li { margin-bottom: 20px; padding: 15px; border-radius: 8px; background-color: #273646; cursor: pointer; transition: background-color 0.3s, box-shadow 0.3s; } .group-list li:hover { background-color: #34495e; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } /* Zone de chat */ .chat-area { display: flex; flex-direction: column; flex: 1; min-width: 0; background-color: #ffffff; border-radius: 10px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); margin: 10px; margin-top: 20px; margin-left: 0%; } /* En-tête du chat */ .chat-header { background-color: #34495e; color: white; padding: 15px; font-size: 20px; font-weight: bold; border-radius: 10px 10px 0 0; text-align: center; } /* Messages */ .messages { flex: 1; padding: 20px; overflow-y: auto; background-color: #f1f1f1; border-top: 1px solid #ddd; } .message-container { max-width: 100%; border-radius: 5px; overflow-wrap: break-word; word-wrap: break-word; background-color: #f1f1f1; display: flex; flex-direction: column; } .message-container .message { align-self: flex-start; } .message-container .message.user { align-self: flex-end; margin-left: auto; color: white; } .message { padding: 12px 18px; background-color: #e1e1e1; border-radius: 15px; max-width: 70%; font-size: 16px; line-height: 1.4; margin-bottom: 0%; white-space: pre-wrap; word-wrap: break-word; position: relative; display: inline-block; } /* Messages de l'utilisateur */ .message.user { background-color: #3498db; color: white; align-self: flex-end; text-align: right; } /* Amélioration de l'esthétique des messages */ /* .message.user:before { content: ''; position: absolute; top: 10px; right: -10px; border: 10px solid transparent; border-left-color: #3498db; } */ /* Zone de saisie */ .input-area { padding: 10px; background-color: #bdc3c7; display: flex; align-items: center; /* Alignement vertical */ } .input-area input[type="text"] { flex: 1; /* Prend l'espace restant */ padding: 10px; border: 1px solid #ccc; border-radius: 5px; } .input-area .attachment-icon { margin: 0 10px; cursor: pointer; display: flex; align-items: center; } .input-area button { padding: 10px; margin-left: 10px; background-color: #2980b9; color: white; border: none; border-radius: 5px; cursor: pointer; } .input-area button:hover { background-color: #1f608d; } #message-input { width: 100%; height: 50px; resize: none; padding: 10px; box-sizing: border-box; overflow: auto; max-width: 100%; border-radius: 10px; } /* Responsive */ @media screen and (max-width: 768px) { .group-list { display: none; /* Masquer la liste des groupes sur les petits écrans */ } .chat-area { margin: 0; } }