2024-07-09 02:55:13 +02:00
|
|
|
html {
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
|
2024-07-09 22:51:28 +02:00
|
|
|
body {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#page {
|
|
|
|
max-width: 600px;
|
|
|
|
}
|
|
|
|
|
2024-07-09 02:55:13 +02:00
|
|
|
h1 {
|
2024-07-09 22:51:28 +02:00
|
|
|
margin-left: 0.5em;
|
2024-07-09 02:55:13 +02:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.delay {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rounded-rectangle {
|
|
|
|
border-width: 2px;
|
|
|
|
border: black;
|
|
|
|
border-style: solid;
|
|
|
|
border-radius: 1em;
|
|
|
|
|
|
|
|
padding: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-content {
|
|
|
|
z-index: 1;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-content.theirs {
|
|
|
|
background-color: yellow;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-content.ours {
|
|
|
|
background-color: pink;
|
|
|
|
right: 0;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
2024-07-09 22:51:28 +02:00
|
|
|
margin: 1em;
|
2024-07-10 00:40:49 +02:00
|
|
|
margin-bottom: 4em;
|
2024-07-09 02:55:13 +02:00
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
height: 2.5em;
|
|
|
|
width: 100%;
|
|
|
|
|
2024-07-09 22:51:28 +02:00
|
|
|
margin-bottom: 1.5em;
|
2024-07-09 02:55:13 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2024-07-09 22:51:28 +02:00
|
|
|
|
2024-07-09 02:55:13 +02:00
|
|
|
#textbox {
|
2024-07-09 22:51:28 +02:00
|
|
|
width: 100%;
|
2024-07-10 00:40:49 +02:00
|
|
|
position: fixed;
|
2024-07-09 22:51:28 +02:00
|
|
|
bottom: 0;
|
|
|
|
|
|
|
|
margin-top: 0.5em;
|
2024-07-10 00:40:49 +02:00
|
|
|
|
|
|
|
z-index: 1;
|
2024-07-09 22:51:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#typing-indicator {
|
|
|
|
margin: 0;
|
|
|
|
margin-left: 1em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
|
2024-07-10 00:40:49 +02:00
|
|
|
position: fixed;
|
2024-07-09 22:51:28 +02:00
|
|
|
bottom: 3em;
|
2024-07-09 02:55:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#textbox input {
|
|
|
|
margin: 0.5em;
|
2024-07-09 22:51:28 +02:00
|
|
|
left: 1em;
|
2024-07-09 02:55:13 +02:00
|
|
|
|
|
|
|
width: 85%;
|
|
|
|
font-size: 1em;
|
2024-07-10 00:40:49 +02:00
|
|
|
|
|
|
|
z-index: 1;
|
2024-07-09 02:55:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
margin: 0.5em;
|
|
|
|
padding: 0;
|
|
|
|
width: 10%;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.progress-bar {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
opacity: 80%;
|
|
|
|
max-width: 400px;
|
|
|
|
background-color: #e0e0e0;
|
|
|
|
border-radius: 10px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
z-index: -1;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.progress {
|
|
|
|
opacity: 80%;
|
|
|
|
width: 0;
|
|
|
|
height: 100%;
|
|
|
|
background-color: #ff5c35;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-status {
|
|
|
|
margin-top: 1em;
|
|
|
|
position: absolute;
|
|
|
|
top: 2.3em;
|
|
|
|
right: 1em;
|
|
|
|
font-size: .8em;
|
|
|
|
}
|