mirror of
https://github.com/CopterExpress/clover.git
synced 2026-05-26 21:19:35 +00:00
10 lines
144 B
CSS
10 lines
144 B
CSS
/* Dashed list items */
|
|
section li {
|
|
list-style-type: none;
|
|
}
|
|
section li:before {
|
|
content: "—";
|
|
margin-left: -20px;
|
|
position: absolute;
|
|
}
|