mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 13:00:04 +08:00
Fix list style (#4324)
This commit is contained in:
parent
ceff70e6b5
commit
a00ca02d89
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user