.fish_quiz_pre {
margin-top: 0px;
margin-bottom: 0px;
}
.fish_quiz_question {
display: table;
table-layout: fixed;
border-spacing: 15px 0px;
width: 100%;
}
.fish_quiz_question div {
display: table-cell;
width: 50%;
background: #F0F0F8;
border-style: groove;
border-width: 2px;
padding: 5px;
}
.fish_quiz_choices {
display: table;
table-layout: fixed;
border-spacing: 15px 15px;
width: 100%;
}
.fish_quiz_choices a {
display: table-cell;
margin: 5px
color: black;
text-decoration: none;
padding: 5px;
text-align: center;
border-style: outset;
border-width: 2px;
font-size: 12pt;
width: 100%;
}
.fish_quiz_choices a:link {
color: inherit;
}
a.choice_yes {
background-color: #97fe97;
}
a.choice_no {
background-color: #fcfd97;
}
a.choice_incorrect {
background-color: #fe9797;
}
.fish_quiz_choices a:hover {
border-style: solid;
border-color: #AAA;
}
.choice_yes {
background-color: #97fe97;
}
.choice_no {
background-color: #fcfd97;
}
.choice_incorrect {
background-color: #fe9797;
}
.fish_answer [...]