2024-10-24 01:57:58 +00:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2024-10-28 02:43:29 +00:00
|
|
|
background-color: #134115;
|
|
|
|
font-family: monospace;
|
2024-10-24 01:57:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.messages {
|
|
|
|
padding: 1em;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column-reverse;
|
2024-10-28 02:43:29 +00:00
|
|
|
height: auto;
|
2024-10-24 01:57:58 +00:00
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2024-10-09 00:31:53 +00:00
|
|
|
.messages .message {
|
2024-10-28 02:43:29 +00:00
|
|
|
padding: 1em 1.25em;
|
|
|
|
border: 1px solid #020a03;
|
2024-10-09 00:31:53 +00:00
|
|
|
border-radius: 5px;
|
2024-10-28 02:43:29 +00:00
|
|
|
margin-bottom: 0.75em;
|
|
|
|
background-color: #fffefc;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #0c0b09;
|
2024-10-09 00:31:53 +00:00
|
|
|
}
|
2024-10-24 01:57:58 +00:00
|
|
|
|
2024-10-09 00:31:53 +00:00
|
|
|
.chatter {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2024-10-24 01:57:58 +00:00
|
|
|
.chat-input {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-top: 1px solid #ccc;
|
2024-10-28 02:43:29 +00:00
|
|
|
height: auto;
|
|
|
|
padding: 1em;
|
|
|
|
background-color: #f4efe6;
|
2024-10-24 01:57:58 +00:00
|
|
|
}
|
2024-10-09 00:31:53 +00:00
|
|
|
.chat-input > form {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
2024-10-24 01:57:58 +00:00
|
|
|
box-sizing: border-box;
|
2024-10-09 00:31:53 +00:00
|
|
|
}
|
2024-10-24 01:57:58 +00:00
|
|
|
.chat-input > form > input,
|
|
|
|
.chat-input > form > submit {
|
2024-10-28 02:43:29 +00:00
|
|
|
padding: 1em 1.25em;
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
.chat-input > form > submit {
|
|
|
|
background-color: #020a03;
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
color: #fffbf6;
|
|
|
|
font-weight: bold;
|
|
|
|
font-family: monospace !important;
|
|
|
|
padding: 0.75em 1em;
|
|
|
|
margin-right: 0;
|
2024-10-09 00:31:53 +00:00
|
|
|
}
|
|
|
|
.chat-input > form > input[name="chatter"] {
|
|
|
|
width: 20%;
|
2024-10-28 02:43:29 +00:00
|
|
|
border: 1px solid #020a03;
|
|
|
|
border-radius: 5px;
|
|
|
|
color: #0c0b09;
|
|
|
|
font-family: monospace;
|
2024-10-09 00:31:53 +00:00
|
|
|
}
|
|
|
|
.chat-input > form > input[name="message"] {
|
|
|
|
width: 75%;
|
2024-10-28 02:43:29 +00:00
|
|
|
border: 1px solid #020a03;
|
|
|
|
border-radius: 5px;
|
|
|
|
color: #0c0b09;
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
.chat-input {
|
|
|
|
padding: 2.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-input > form {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-input > form > input[name="chatter"] {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 3.5em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-input > form > input[name="message"] {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 3.5em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chat-input > form > input, .chat-input > form > submit {
|
|
|
|
padding: 0.75em 1em;
|
|
|
|
border-radius: 0.25em;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 3.5em;
|
|
|
|
}
|
2024-10-05 02:57:21 +00:00
|
|
|
}
|