1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 12:50:04 +08:00

Fix list style (#4324)

This commit is contained in:
Wang Shidong 2021-07-05 23:49:15 +08:00 committed by GitHub
parent ceff70e6b5
commit a00ca02d89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -643,9 +643,19 @@ a small {
}
ul {
list-style: coral;
list-style: none;
padding: 0;
}
li {
padding-left: 1.3em;
}
li:before {
content: "·"; /* FontAwesome Unicode */
// font-family: FontAwesome;
display: inline-block;
margin-left: -1.3em; /* same as padding-left set on li */
width: 1.3em; /* same as padding-left set on li */
}
// ul { list-style-image: url("../images/bullet.png"); }
strong {
font-family: "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif !important;