mirror of https://github.com/PiyushXCoder/lupt.git
146 lines
2.4 KiB
CSS
146 lines
2.4 KiB
CSS
pre {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: 0.9em;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
textarea {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: 0.9em;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.siimple-progress.progress-bar {
|
|
height: 10px !important;
|
|
position: fixed;
|
|
top: 0; left: 0; right: 0;
|
|
z-index: 99999;
|
|
}
|
|
|
|
.cover-screen {
|
|
position: fixed;
|
|
top: 0; bottom: 0; left: 0; right: 0;
|
|
z-index: 999;
|
|
}
|
|
|
|
.chatpanel {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 44px;
|
|
}
|
|
|
|
.chatpanel-left {
|
|
position: fixed;
|
|
display: inline;
|
|
width: 34px;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.chatpanel-mid {
|
|
position: fixed;
|
|
display: inline;
|
|
width: calc(100% - 54px - 34px);
|
|
bottom: 3px;
|
|
left: 34px;
|
|
}
|
|
|
|
.chatpanel-right {
|
|
position: fixed;
|
|
display: inline;
|
|
width: 44px;
|
|
bottom: 5px;
|
|
right: 5px;
|
|
}
|
|
|
|
#send_box {
|
|
width: 100%;
|
|
height: 40px;
|
|
min-height: 40px;
|
|
word-wrap: break-word;
|
|
resize: none;
|
|
}
|
|
|
|
.status {
|
|
width: calc(100% - 6);
|
|
padding: 3px;
|
|
text-align: center;
|
|
}
|
|
|
|
.message {
|
|
padding: 0px 8px 3px 8px;
|
|
margin: 2px;
|
|
word-wrap: break-word;;
|
|
}
|
|
|
|
.message-other {
|
|
border-left: 5px solid #1E86D7;
|
|
background-color: #95C1E2;
|
|
}
|
|
|
|
.message-me {
|
|
border-left: 5px solid #2F848D;
|
|
background-color: #99C5C9;
|
|
}
|
|
|
|
.message-reply {
|
|
border-left: 5px solid #383C4A;
|
|
background-color: #DEDEDE;
|
|
}
|
|
|
|
.message .message-by {
|
|
font-size: 0.7rem;
|
|
font-style: italic;
|
|
text-decoration: underline;
|
|
padding-bottom: 1px;
|
|
}
|
|
|
|
.message-me.active {
|
|
border: 2px dashed #11603F;
|
|
border-left: 5px solid #11603F;
|
|
}
|
|
|
|
.message-other.active {
|
|
border: 2px dashed #104975;
|
|
border-left: 5px solid #104975;
|
|
}
|
|
|
|
.clip-win {
|
|
position: fixed;
|
|
z-index: 9999;
|
|
padding: 8px;
|
|
margin: 5px;
|
|
bottom: 44px;
|
|
border: 1px dashed #1E86D7;
|
|
}
|
|
|
|
.clip-win.reply-clip {
|
|
width: calc(100% - 2*8px - 3*5px);
|
|
max-width: 720px;
|
|
height: 1.5em;
|
|
border-left: 5px solid #1E86D7;
|
|
border-radius: 0px 30px 30px 0px;
|
|
}
|
|
|
|
.clip-win.selected-clip {
|
|
width: fit-content;
|
|
height: 34px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.clip-win.action-clip {
|
|
border-radius: 10px;
|
|
width: calc(100% - 2*8px - 3*5px);
|
|
max-width: 720px;
|
|
}
|