Merge pull request #103 from aelfric/master
Use recommended style for fontawesom lists
This commit is contained in:
commit
2c5699d4e4
4 changed files with 8 additions and 11 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,3 +1,4 @@
|
|||
public
|
||||
exampleSite/public
|
||||
node_modules
|
||||
*.lock
|
||||
|
|
|
|||
|
|
@ -370,16 +370,6 @@ li {
|
|||
margin-left: 30px;
|
||||
}
|
||||
|
||||
ul li {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.bult {
|
||||
display: inline;
|
||||
float: left;
|
||||
padding-top: 7px;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
2. Utilities - These things get used a lot
|
||||
========================================================================== */
|
||||
|
|
|
|||
|
|
@ -109,7 +109,8 @@ var $sitehead = $("#site-head");
|
|||
});
|
||||
}
|
||||
|
||||
$("ul li").before('<span class="bult fa fa-asterisk"></span>');
|
||||
$('ul').addClass("fa-ul");
|
||||
$("ul li").prepend('<span class="fa-li"><i class="fa fa-asterisk"></i></span>');
|
||||
$("blockquote p").prepend('<span class="quo fa fa-quote-left"></span>');
|
||||
$("blockquote p").append('<span class="quo fa fa-quote-right"></span>');
|
||||
});
|
||||
|
|
|
|||
|
|
@ -33,3 +33,8 @@ to
|
|||

|
||||
|
||||
in estimated seconds.
|
||||
|
||||
Don't believe me? Here are some bullets
|
||||
|
||||
* If anyone can teach you to cook, I can
|
||||
* And if you already know how to cook, I will make you that much better
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue