mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
24 lines
326 B
CSS
24 lines
326 B
CSS
<style>
|
|
body {
|
|
font-family: Verdana, Helvetica, Sans-Serif;
|
|
background-color: #fff;
|
|
color: #000;
|
|
}
|
|
|
|
.question {
|
|
border: 1px solid #ddd;
|
|
margin: 5px;
|
|
padding: 3px;
|
|
}
|
|
|
|
.question h3 {
|
|
font-weight: normal;
|
|
font-size: 125%;
|
|
}
|
|
|
|
.question ul {
|
|
list-style-type: none;
|
|
}
|
|
|
|
</style>
|