updated docs for styling linklog options

This commit is contained in:
Brandon Mathis 2012-05-20 23:45:21 -05:00
parent 860094feba
commit 8a0940503f

View File

@ -55,7 +55,7 @@ standard_post_marker: "★ "
To help distinguish them from standard posts, linked posts have a smaller font size in addition to the linklog marker. When an article is a linked post it is marked with the html5 attribute `data-linklog` to give you a hook to customize styles if you like. If you wanted to set a different color for linked post titles you could add this css to your `sass/custom/styles.scss`.
``` scss Customized linked post title
article[data-linklog] .entry-title a {
.linklog .entry-title a {
color: lime;
}
```