123456789101112131415161718192021 |
- ol{
- li::marker{
- color: #f6911f;
- text-align: right;
- font-weight: 700;
- font-size: 22px;
- content: counter(list-item) " ";
- }
- li{
- padding-left: 20px;
- margin-bottom: 40px;
- border-top: 2px solid #f6911f;
- }
- strong{
- display: block;
- font-size: 22px;
- padding: 10px 0 10px;
- margin: 0px;
- font-weight: bolder;
- }
- }
|