1234567891011121314151617181920212223242526272829 |
- ul {
- list-style: none;
- margin: 0;
- padding-left: 0;
- }
- li:first-child {
- font-weight: bolder;
- font-size: 150%;
- }
- li:first-child ::before {
- content: "";
- display: block;
- height: 1px;
- background: #000;
- }
- li:last-child {
- border-bottom: 1px;
- border-style: solid;
- border-color: #000;
- }
- a {
- display: block;
- text-decoration: none;
- color: #444;
- }
- a:hover {
- color: #999;
- text-decoration: underline;
- }
|