Spaces:
Build error
Build error
File size: 1,398 Bytes
e5f4bf9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
body {
font-family: "Arial, Courier New", sans-serif;
text-align: center;
}
h1 {
margin: 10px 10px;
}
.buttons {
font-size: 2em;
display: flex;
justify-content: center;
}
.button, .value {
line-height: 1;
padding: 1rem;
margin: 1rem;
border: medium solid;
min-height: 1em;
min-width: 1em;
}
.button {
cursor: pointer;
user-select: none;
}
.minus {
color: red;
}
.plus {
color: green;
}
.value {
min-width: 2em;
}
.state {
font-size: 2em;
}
.container {
min-width: 30em;
max-width: 40em;
}
.accordion-collapse {
padding: 5px 5px 0 5px;
}
.chat-container {
margin: 10px 0;
min-height: 300px;
max-height: 600px;
overflow: auto;
}
.bot-personality {
text-align: left;
margin: 0 0 5px 0;
}
.chat-parameter {
text-align: left;
margin: 5px 0 5px 0;
}
.bot-personality input {
margin: 5px 0 0 0;
min-width: 20em;
}
.message {
margin: 5px 0;
}
.message-inner {
font-size: 16px;
}
.outgoing {
text-align: right;
}
.outgoing .badge {
text-align: right;
}
.botPersonality, .incoming, .incoming .badge, .chat-suggestion, .server-message, .parameters {
text-align: left;
}
.chat-suggestion, .server-message
{
padding-left: 5px;
}
.server-message-value {
font-style: italic;
}
#collapseParameter {
width: 300px;
margin: 8px 0px;
}
|