更多操作
无编辑摘要 |
无编辑摘要 |
||
第100行: | 第100行: | ||
.explain{ | .explain{ | ||
display:inline; | display:inline; | ||
} | |||
.confirmEditContainer { | |||
width: 70%; | |||
position: relative; | |||
background-color: white; | |||
padding: 10px; | |||
display: none; | |||
top: 100px; | |||
z-index: 20; | |||
border-radius: 8px; | |||
overflow: scroll; | |||
} | |||
.change-to { | |||
width: 50px; | |||
} | |||
.changes { | |||
display: flex; | |||
flex-direction: row; | |||
flex-wrap: wrap; | |||
justify-content: center; | |||
} | |||
.change { | |||
flex-grow: 1; | |||
margin-right: 30px | |||
} | |||
.change>textarea { | |||
width: 100%; | |||
height: 250px; | |||
min-height: 40px; | |||
} | |||
.option-input{ | |||
width: 90%; | |||
min-width: 230px; | |||
} | |||
.confirmEditHeader { | |||
display: block; | |||
} | |||
.confirmEditBtn{ | |||
margin-left: 5px; | |||
} | |||
.editorTipsItem{ | |||
margin: 1px; | |||
margin-left:13px; | |||
font-size: 13px; | |||
} | |||
.edit-button-set{ | |||
margin-top: 5px; | |||
} | |||
@media (max-width: 500px) { | |||
.confirmEditContainer { | |||
width: 95%; | |||
position: absolute; | |||
} | |||
.change-to { | |||
display: none; | |||
} | |||
.option-input{ | |||
width: 100%; | |||
} | |||
} | |||
@media (max-height: 300px) { | |||
.confirmEditContainer { | |||
top: 20px; | |||
} | |||
} | } |
2023年1月30日 (一) 08:26的版本
.subject{
margin-top: 10px;
max-width: 95%;
word-wrap:break-word
}
.source{
display: inline;
background: #e3e3e3;
padding: 4px;
border-radius: 3px;
color: #6d6d6d;
}
.title{
display: inline;
margin-left: 5px;
}
.options{
display: block;
margin-left: 30px;
margin-top: 10px;
}
.info{
margin-left: 30px;
margin-top: 10px;
}
.ansContainer{
margin-top: 15px;
margin-left: 20px;
}
.correctAnswer{
display: inline;
}
.correctAnswerNoDisplay{
display: none;
}
.noDisplay{
display: none;
}
.options>label{
display: block;
word-wrap:break-word;
max-width: 80%;
margin-top: 5px;
border-radius: 5px;
}
.correct{
transition-duration: 500ms;
background-color: rgba(53, 238, 40,0.4);
font-weight: bold;
}
.wrong{
transition-duration: 500ms;
background-color: rgba(255, 79, 79, 0.4);
font-weight: bold;
}
.no-background{
background-color: rgba(255, 255, 255, 0);
transition-duration: 1000ms;
}
.typeB>.subject>.options{
columns:3 30px;
list-style-type:none;
}
.typeB>.subject>.titleContainer>div{
margin-left: 15px;
margin-top: 10px;
margin-bottom: 10px;
}
.typeC>.subject>.options{
columns:3 30px;
list-style-type:none;
}
.typeC>.subject>.titleContainer>div{
margin-left: 15px;
margin-top: 10px;
margin-bottom: 10px;
}
.answerTip{
display: inline;
background: lightgrey;
color: darkgreen;
padding: 3px;
border-radius: 5px;
margin-left: 5px;
}
.button{
margin-top: 5px;
margin-left: 14px;
}
.TKcheck{
width:fit-content;
padding: 5px;
display: inline;
margin-left: 3px;
border-radius: 5px;
}
.explain{
display:inline;
}
.confirmEditContainer {
width: 70%;
position: relative;
background-color: white;
padding: 10px;
display: none;
top: 100px;
z-index: 20;
border-radius: 8px;
overflow: scroll;
}
.change-to {
width: 50px;
}
.changes {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
.change {
flex-grow: 1;
margin-right: 30px
}
.change>textarea {
width: 100%;
height: 250px;
min-height: 40px;
}
.option-input{
width: 90%;
min-width: 230px;
}
.confirmEditHeader {
display: block;
}
.confirmEditBtn{
margin-left: 5px;
}
.editorTipsItem{
margin: 1px;
margin-left:13px;
font-size: 13px;
}
.edit-button-set{
margin-top: 5px;
}
@media (max-width: 500px) {
.confirmEditContainer {
width: 95%;
position: absolute;
}
.change-to {
display: none;
}
.option-input{
width: 100%;
}
}
@media (max-height: 300px) {
.confirmEditContainer {
top: 20px;
}
}