更多操作
(建立内容为“.source{ display: inline; } .title{ display: inline; } .answers{ display: block; margin-left: 30px; } .correctAnswerNoDisplay{ display: none;…”的新页面) |
无编辑摘要 |
||
第1行: | 第1行: | ||
.subject{ | |||
margin-top: 10px; | |||
max-width: 95%; | |||
word-wrap:break-word | |||
} | |||
.source{ | .source{ | ||
display: inline; | display: inline; | ||
background: #e3e3e3; | |||
padding: 4px; | |||
border-radius: 3px; | |||
color: #6d6d6d; | |||
} | } | ||
.title{ | .title{ | ||
第8行: | 第17行: | ||
display: block; | display: block; | ||
margin-left: 30px; | margin-left: 30px; | ||
margin-top: 10px; | |||
} | |||
.correctContainer{ | |||
margin-top: 15px; | |||
margin-left: 20px; | |||
} | |||
.correctAnswer{ | |||
display: inline; | |||
} | } | ||
.correctAnswerNoDisplay{ | .correctAnswerNoDisplay{ | ||
第14行: | 第31行: | ||
.noDisplay{ | .noDisplay{ | ||
display: none; | display: none; | ||
} | |||
.answers>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; | |||
} | } |
2022年2月6日 (日) 12:16的版本
.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;
}
.answers{
display: block;
margin-left: 30px;
margin-top: 10px;
}
.correctContainer{
margin-top: 15px;
margin-left: 20px;
}
.correctAnswer{
display: inline;
}
.correctAnswerNoDisplay{
display: none;
}
.noDisplay{
display: none;
}
.answers>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;
}