22 lines
187 B
CSS
22 lines
187 B
CSS
body {
|
|
width: 600px;
|
|
}
|
|
|
|
ol {
|
|
text-align: left;
|
|
}
|
|
|
|
li {
|
|
list-style: circle;
|
|
}
|
|
|
|
.blue {
|
|
color: dodgerblue;
|
|
font-style: italic;
|
|
}
|
|
|
|
.pink {
|
|
color: fuchsia;
|
|
font-weight: bold;
|
|
}
|