2024-01-05 21:24:54 +00:00
|
|
|
/* .modal-chat {
|
2023-12-24 21:18:42 +00:00
|
|
|
align-items: center;
|
|
|
|
background-color: red;
|
|
|
|
color: black;
|
|
|
|
display: flex;
|
|
|
|
height: 50%;
|
|
|
|
justify-content: center;
|
|
|
|
opacity: 1;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-container {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
height: 100vh;
|
|
|
|
justify-content: center;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 100vw;
|
2024-01-05 21:24:54 +00:00
|
|
|
} */
|
|
|
|
|
2024-01-30 17:24:07 +00:00
|
|
|
.chat-toggle {
|
2024-01-05 21:24:54 +00:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding-top: 10px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2024-01-30 17:24:07 +00:00
|
|
|
.chat-toggle-label {
|
2024-01-05 21:24:54 +00:00
|
|
|
color: white;
|
|
|
|
font-family: sans-serif;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
2024-01-30 17:24:07 +00:00
|
|
|
.chat-command {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
padding-top: 10px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-command-input {
|
|
|
|
border: none;
|
|
|
|
border-radius: 34px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 16px;
|
|
|
|
outline: none;
|
|
|
|
padding: 5px 10px 5px 10px;
|
2024-02-06 19:57:56 +00:00
|
|
|
text-align: center;
|
2024-01-30 17:24:07 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2024-02-06 19:57:56 +00:00
|
|
|
.chat-command-option {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-command-options {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
}
|
|
|
|
|
2024-01-30 17:24:07 +00:00
|
|
|
.chat-command-label {
|
|
|
|
color: white;
|
|
|
|
height: 29px;
|
|
|
|
}
|
|
|
|
|
2024-02-06 19:57:56 +00:00
|
|
|
.chat-command-rant-amount {
|
2024-01-30 17:24:07 +00:00
|
|
|
border: none;
|
2024-02-06 19:57:56 +00:00
|
|
|
/* border-radius: 34px; */
|
2024-01-30 17:24:07 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 16px;
|
|
|
|
outline: none;
|
2024-02-06 19:57:56 +00:00
|
|
|
/* padding: 5px 10px 5px 10px; */
|
|
|
|
padding: 5px;
|
2024-01-30 17:24:07 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2024-02-06 19:57:56 +00:00
|
|
|
.chat-command-rant-amount-label {
|
|
|
|
color: white;
|
|
|
|
font-family: sans-serif;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-command-rant-amount-symbol {
|
|
|
|
color: white;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 20px;
|
|
|
|
padding-right: 1px;
|
|
|
|
}
|
|
|
|
|
2024-01-05 21:24:54 +00:00
|
|
|
.chat-interval {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding-top: 10px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-interval-input {
|
|
|
|
border: none;
|
|
|
|
border-radius: 34px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 16px;
|
|
|
|
outline: none;
|
|
|
|
padding: 5px 10px 5px 10px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-interval-input-zero::placeholder {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-interval-input-value::placeholder {
|
|
|
|
color: black;
|
|
|
|
opacity: 1;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-interval-label {
|
|
|
|
color: white;
|
|
|
|
font-family: sans-serif;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-options {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stream-chat-message {
|
|
|
|
align-items: center;
|
|
|
|
color: white;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
font-family: sans-serif;
|
|
|
|
justify-content: start;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stream-chat-message-error {
|
|
|
|
border: 1px solid red;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: red;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 5px;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stream-chat-message-label {
|
|
|
|
padding: 5px 0px;
|
|
|
|
/* width: 50%; */
|
|
|
|
}
|
|
|
|
|
|
|
|
.stream-chat-message-modal {
|
|
|
|
align-items: left;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stream-chat-message-textarea {
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 16px;
|
|
|
|
outline: none;
|
|
|
|
padding: 10px;
|
|
|
|
resize: none;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stream-chat-message-title {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2024-01-30 17:24:07 +00:00
|
|
|
justify-content: space-between;
|
2024-01-05 21:24:54 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2024-01-30 17:24:07 +00:00
|
|
|
.stream-chat-message-title-right {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-toggle-switch {
|
2024-01-05 21:24:54 +00:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
width: 50px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
2024-01-30 17:24:07 +00:00
|
|
|
.chat-toggle-switch input {
|
2024-01-05 21:24:54 +00:00
|
|
|
opacity: 0;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
2024-01-30 17:24:07 +00:00
|
|
|
.chat-toggle-slider {
|
2024-01-05 21:24:54 +00:00
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: #495a6a;
|
|
|
|
-webkit-transition: .4s;
|
|
|
|
transition: .4s;
|
|
|
|
}
|
|
|
|
|
2024-01-30 17:24:07 +00:00
|
|
|
.chat-toggle-slider:before {
|
2024-01-05 21:24:54 +00:00
|
|
|
position: absolute;
|
|
|
|
content: "";
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
left: 4px;
|
|
|
|
bottom: 4px;
|
|
|
|
background-color: white;
|
|
|
|
-webkit-transition: .4s;
|
|
|
|
transition: .4s;
|
|
|
|
}
|
|
|
|
|
2024-01-30 17:24:07 +00:00
|
|
|
input:checked + .chat-toggle-slider {
|
2024-01-05 21:24:54 +00:00
|
|
|
background-color: #85c742;
|
|
|
|
}
|
|
|
|
|
2024-01-30 17:24:07 +00:00
|
|
|
input:checked + .chat-toggle-slider:before {
|
2024-01-05 21:24:54 +00:00
|
|
|
-webkit-transform: translateX(26px);
|
|
|
|
-ms-transform: translateX(26px);
|
|
|
|
transform: translateX(26px);
|
|
|
|
}
|
|
|
|
/* Rounded sliders */
|
2024-01-30 17:24:07 +00:00
|
|
|
.chat-toggle-slider.round {
|
2024-01-05 21:24:54 +00:00
|
|
|
border-radius: 34px;
|
|
|
|
}
|
|
|
|
|
2024-01-30 17:24:07 +00:00
|
|
|
.chat-toggle-slider.round:before {
|
2024-01-05 21:24:54 +00:00
|
|
|
border-radius: 50%;
|
2024-01-30 17:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.chat-toggle-check-container {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
padding-left: 16px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 15px;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-toggle-check-container input {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
height: 0;
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-toggle-check {
|
|
|
|
border-radius: 3px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 15px;
|
|
|
|
width: 15px;
|
|
|
|
background-color: #495a6a;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-toggle-check-container:hover input ~ .chat-toggle-check {
|
|
|
|
background-color: #495a6a;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-toggle-check-container input:checked ~ .chat-toggle-check {
|
|
|
|
background-color: #85c742;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-toggle-check:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-toggle-check-container input:checked ~ .chat-toggle-check:after {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-toggle-check-container .chat-toggle-check:after {
|
|
|
|
left: 4px;
|
|
|
|
top: 1px;
|
|
|
|
width: 4px;
|
|
|
|
height: 8px;
|
|
|
|
border: solid white;
|
|
|
|
border-width: 0 3px 3px 0;
|
|
|
|
-webkit-transform: rotate(45deg);
|
|
|
|
-ms-transform: rotate(45deg);
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-toggle-check-label {
|
2024-02-06 19:57:56 +00:00
|
|
|
color: white;
|
|
|
|
font-family: sans-serif;
|
2024-01-30 17:24:07 +00:00
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.choose-file {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.choose-file-button-box {
|
|
|
|
min-width: 100px;
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.choose-file-button {
|
|
|
|
background-color: #85c742;
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
color: #061726;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 16px;
|
|
|
|
text-decoration: none;
|
|
|
|
/* width: 200px; */
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.choose-file-path {
|
|
|
|
overflow: scroll;
|
|
|
|
margin-left: 5px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|