Merge pull request #143 from christianrank/fix/better-visible-color

[FIX] use darker color to have a clear contrast
This commit is contained in:
Angelos Chalaris
2019-06-22 11:03:17 +03:00
committed by GitHub

View File

@ -18,7 +18,7 @@ Creates a striped list with alternating background colors, which is useful for d
```css
li:nth-child(odd) {
background-color: #eee;
background-color: #ddd;
}
```