249 lines
3.6 KiB
CSS
249 lines
3.6 KiB
CSS
:root {
|
|
--blanc: #fff;
|
|
--gris: #666;
|
|
--noir: #000;
|
|
|
|
--bleu: #0055a4;
|
|
--rouge: #e1000f;
|
|
|
|
--rose-de-l-erreur: #f0f
|
|
}
|
|
|
|
html {
|
|
font-family: sans-serif;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
height: 100%;
|
|
display: flex;
|
|
background-color: var(--blanc);
|
|
}
|
|
|
|
#side-panel {
|
|
height: 100%;
|
|
color: var(--noir);
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
#header button {
|
|
transform: translateY(-.3em);
|
|
width: auto;
|
|
visibility: visible;
|
|
}
|
|
|
|
#side-panel.invisible-on-mobile {
|
|
display: none;
|
|
}
|
|
|
|
/* on desktop only */
|
|
@media only screen and (min-width: 768px) {
|
|
#side-panel {
|
|
min-width: 300px;
|
|
width: auto;
|
|
visibility: visible;
|
|
border-right: 3px solid var(--noir);
|
|
}
|
|
|
|
#side-panel.invisible-on-mobile {
|
|
display: block;
|
|
}
|
|
|
|
#header button {
|
|
width: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
|
|
#side-panel .conversation {
|
|
width: 100%;
|
|
height: 70px;
|
|
border-bottom: solid var(--noir) 3px;
|
|
color: var(--onyx);
|
|
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
#side-panel .conversation:hover {
|
|
background-color: var(--bleu);
|
|
color: var(--blanc);
|
|
}
|
|
|
|
#side-panel h2 {
|
|
margin: 0;
|
|
}
|
|
|
|
#header {
|
|
position: sticky;
|
|
top: 0;
|
|
border-bottom: solid var(--blanc) 3px;
|
|
}
|
|
|
|
#main-panel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
width: 100%;
|
|
}
|
|
|
|
#page {
|
|
width: 100%;
|
|
}
|
|
|
|
h1 {
|
|
display: inline-block;
|
|
color: var(--noir);
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.rounded-rectangle {
|
|
border-width: 2px;
|
|
border: black;
|
|
border-style: none;
|
|
border-radius: 1em;
|
|
|
|
padding: .6em .8em;
|
|
}
|
|
|
|
.message-content {
|
|
z-index: 1;
|
|
float: right;
|
|
}
|
|
|
|
.message-content.theirs {
|
|
background-color: var(--bleu);
|
|
color: var(--blanc);
|
|
|
|
float: left;
|
|
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
|
|
.message-content.theirs h3 {
|
|
color: var(--blanc);
|
|
margin: 0;
|
|
margin-bottom: 3px;
|
|
font-size: .85em;
|
|
font-weight: bolder;
|
|
letter-spacing: .03em;
|
|
}
|
|
|
|
.theirs .message-text {
|
|
}
|
|
|
|
.message-content.ours {
|
|
background-color: var(--rouge);
|
|
|
|
right: 0;
|
|
margin-bottom: 0.5em;
|
|
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
.ours .message-text {
|
|
color: var(--blanc);
|
|
}
|
|
|
|
.system-message {
|
|
color: var(--gris);
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
ul {
|
|
overflow: scroll;
|
|
/*height:100%;*/
|
|
flex-grow: 1;
|
|
margin: 0 .5em;
|
|
padding: .5em 0;
|
|
list-style: none;
|
|
}
|
|
|
|
li {
|
|
position: relative;
|
|
display: inline-table;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
li.message {
|
|
height: 2.5em;
|
|
width: 100%;
|
|
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
#textbox {
|
|
width: 100%;
|
|
display: flex;
|
|
bottom: 0;
|
|
|
|
z-index: 1;
|
|
|
|
/*background-color: var(--light-cyan);*/
|
|
}
|
|
|
|
#typing-indicator {
|
|
color: var(--gris);
|
|
|
|
margin: 0;
|
|
margin-left: 1em;
|
|
margin-bottom: 0.5em;
|
|
|
|
position: fixed;
|
|
bottom: 3em;
|
|
}
|
|
|
|
#textbox input {
|
|
flex-grow: 4;
|
|
|
|
color: var(--noir);
|
|
background-color: var(--blanc);
|
|
border-color: var(--gris);
|
|
border-width: 3px;
|
|
border-style: solid;
|
|
|
|
margin: 0.5em;
|
|
left: 1em;
|
|
|
|
font-size: 1em;
|
|
|
|
z-index: 1;
|
|
}
|
|
|
|
button {
|
|
background-color: var(--rouge);
|
|
color: var(--blanc);
|
|
|
|
margin: 0.5em;
|
|
padding: 0;
|
|
flex-grow: 1;
|
|
right: 0;
|
|
font-size: 1em;
|
|
border-width: 3px;
|
|
border-style: none;
|
|
}
|
|
|
|
button:hover {
|
|
color: var(--rouge);
|
|
background-color: var(--blanc);
|
|
border-color: var(--rouge);
|
|
border-width: 3px;
|
|
padding: 0;
|
|
border-style: solid;
|
|
}
|
|
|
|
.message-status {
|
|
color: var(--gris);
|
|
|
|
position: absolute;
|
|
bottom: -1.75em;
|
|
right: 1em;
|
|
font-size: .8em;
|
|
}
|