48 lines
886 B
CSS
48 lines
886 B
CSS
@charset "UTF-8";
|
|
|
|
|
|
.editor {
|
|
resize: none; /* Empêche le redimensionnement par l'utilisateur */
|
|
overflow-y: hidden; /* Masquer la barre de défilement verticale */
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
.tchat-container {
|
|
display: block;
|
|
padding: 1rem;
|
|
}
|
|
.messages-container {
|
|
overflow-y: auto;
|
|
margin-bottom: 0.5rem;
|
|
padding: 0.5rem;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
background: #f9f9f9;
|
|
}
|
|
.input-container {
|
|
margin-top: auto;
|
|
}
|
|
|
|
|
|
/* pour les blocs */
|
|
.is-title-1 { font-size: 2em; font-weight: bold; }
|
|
.is-title-2 { font-size: 1.5em; font-weight: bold; }
|
|
.is-title-3 { font-size: 1.2em; font-weight: bold; }
|
|
|
|
.is-code-block {
|
|
font-family: monospace;
|
|
background: #f6f6f6;
|
|
border: 1px solid #ddd;
|
|
padding: 0.5em;
|
|
}
|
|
|
|
.is-list::before {
|
|
content: "• ";
|
|
color: #666;
|
|
}
|
|
|
|
.is-toggle::before {
|
|
content: "▶ ";
|
|
cursor: pointer;
|
|
}
|