mirror of https://gitee.com/godoos/godoos.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
737 B
43 lines
737 B
.hide {
|
|
display: none;
|
|
}
|
|
#aiDialog {
|
|
position: absolute;
|
|
top: 10%;
|
|
left: 10%;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.ai-markdown-dialog {
|
|
width: 40%;
|
|
min-width: 150px;
|
|
height: 300px;
|
|
margin: 50px auto;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
background-color: #ebf9fb;
|
|
box-shadow: 0px 5px 5px #e3dfdf;
|
|
text-align: center;
|
|
}
|
|
.ai-dialog-title {
|
|
width: 100%;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
}
|
|
.ai-dialog-content {
|
|
width: 100%;
|
|
height: 200px;
|
|
resize: none;
|
|
outline: none;
|
|
border-radius: 5px;
|
|
border-color: rgb(203, 203, 203);
|
|
}
|
|
.ai-dialog-button {
|
|
width: 50px;
|
|
border-color: rgb(181, 181, 247);
|
|
border-radius: 3px;
|
|
background-color: #fff;
|
|
}
|
|
.ai-dialog-button:hover {
|
|
background-color: #ceecfb;
|
|
}
|
|
|