19 lines
188 B
CSS
19 lines
188 B
CSS
|
.gras{
|
||
|
list-style-type: circle;
|
||
|
}
|
||
|
|
||
|
.italique{
|
||
|
list-style-type: disc;
|
||
|
}
|
||
|
|
||
|
.normal{
|
||
|
list-style-type: square;
|
||
|
}
|
||
|
|
||
|
.bold{
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.italic{
|
||
|
font-style: italic;
|
||
|
}
|