172 lines
2.6 KiB
CSS
172 lines
2.6 KiB
CSS
body {
|
|
font-family: sans-serif;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
textarea {
|
|
border: none;
|
|
}
|
|
|
|
input[type=checkbox] {
|
|
background-color: #fcd363;
|
|
}
|
|
|
|
button,
|
|
input[type=button] {
|
|
border: none;
|
|
padding: 10px 25px 10px 25px;
|
|
border-radius: 2px;
|
|
background-color: #0a84ff;
|
|
color: #fff;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
button:hover,
|
|
input[type=button]:hover {
|
|
border: none;
|
|
padding: 10px 25px 10px 25px;
|
|
border-radius: 2px;
|
|
background-color: #0060df;
|
|
color: #fff;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
pre {
|
|
margin: 0;
|
|
}
|
|
|
|
.note {
|
|
margin-right: 5px;
|
|
color: #737373;
|
|
}
|
|
|
|
#message {
|
|
background-color: #f9f9fa;
|
|
margin: 0;
|
|
font-size: 17px;
|
|
padding: 20px;
|
|
height: 70vh;
|
|
width: calc(100vw - 20px);
|
|
color: #38383d;
|
|
font-family: 'Fira Code', Consolas, monospace;
|
|
overflow-y: scroll;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
#send {
|
|
background-color: #fff;
|
|
margin: 0;
|
|
font-size: 17px;
|
|
padding: 30px;
|
|
width: 100vw;
|
|
height: 30vh;
|
|
|
|
box-shadow: 0 1px 3px rgba(50, 50, 93, .15), 0 1px 0 rgba(0, 0, 0, .02);
|
|
}
|
|
|
|
.send-button {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.bottom-box {
|
|
position: absolute;
|
|
bottom: 30px;
|
|
right: 30px;
|
|
}
|
|
|
|
.top-box {
|
|
position: absolute;
|
|
top: 20px;
|
|
right: 20px;
|
|
}
|
|
|
|
.msg {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.msg-content {
|
|
font-weight: 400;
|
|
color: #737373;
|
|
}
|
|
|
|
.msg-content > *:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.msg-content > *:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.msg-private::after {
|
|
content: " PRIVATE";
|
|
color: #ff9400;
|
|
}
|
|
|
|
.msg-from {
|
|
font-weight: 600;
|
|
color: #0c0c0d;
|
|
}
|
|
|
|
.msg-time {
|
|
font-weight: 400;
|
|
color: #b1b1b3;
|
|
}
|
|
|
|
.msg-from::before {
|
|
content: "@ ";
|
|
}
|
|
|
|
.msg-from-info {
|
|
color: #0a84ff;
|
|
}
|
|
|
|
.msg-from-cb {
|
|
color: #0c0c0d;
|
|
}
|
|
|
|
#prompt-box {
|
|
width: fit-content;
|
|
min-width: 300px;
|
|
min-height: 120px;
|
|
position: absolute;
|
|
top: calc(50% - 180px);
|
|
left: calc(45% - 150px);
|
|
|
|
background-color: #FFFFFF;
|
|
padding: 20px;
|
|
box-shadow: 0 1px 3px rgba(50, 50, 93, .15), 0 1px 0 rgba(0, 0, 0, .02);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
#prompt-box-title {
|
|
width: 100%;
|
|
height: 30px;
|
|
color: #0c0c0d;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
#prompt-box-content {
|
|
height: 90px;
|
|
display: block;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
#prompt-data {
|
|
width: calc(100% - 20px);
|
|
margin: 0 auto;
|
|
border-radius: 2px;
|
|
border-radius: 5px;
|
|
padding: 8px;
|
|
color: #737373;
|
|
border: none;
|
|
display: block;
|
|
font-size: 15px;
|
|
border: #0a84ff 2px solid;
|
|
}
|
|
|
|
#confirm-prompt {
|
|
float: right;
|
|
margin-top: 15px;
|
|
} |