Skip to content

Commit

Permalink
Fixed bad colour in css
Browse files Browse the repository at this point in the history
  • Loading branch information
James Ramsay committed Oct 27, 2013
1 parent ced3cf8 commit a483850
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion assets/css/screen.css
Original file line number Diff line number Diff line change
Expand Up @@ -2563,7 +2563,7 @@ code[class*="language-"]::selection, code[class*="language-"] ::selection {
font-weight: bold; }

.token.entity {
color: 800080;
color: #800080;
cursor: help; }

@media (max-width: 1000px) {
Expand Down
2 changes: 1 addition & 1 deletion assets/scss/_syntax.scss
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,6 @@ pre[class*="language-"] {
}

.token.entity {
color: 800080;
color: #800080;
cursor: help;
}
6 changes: 3 additions & 3 deletions default.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@

<nav class="social">
{{! TODO: Add configuration for Twitter and Facebook links }}
<a class="icon-twitter" href="https://twitter.com/jamesramsay" title="Twitter"></a>
<a class="icon-facebook" href="http://facebook.com/jramsay" title="Facebook"></a>
<a class="icon-feed" href="{{@blog.url}}/rss/" title="RSS Feed"></a>
<a class="icon-twitter" href="https://twitter.com/jamesramsay" title="Twitter"><span class="hidden">Twitter</span></a>
<a class="icon-facebook" href="http://facebook.com/jramsay" title="Facebook"><span class="hidden">Facebook</span></a>
<a class="icon-feed" href="{{@blog.url}}/rss/" title="RSS Feed"><span class="hidden">RSS Feed</span></a>
</nav>

<p><a href="https://github.com/jamesramsay/ghost-incorporated">Ghost Incorporated</a> theme by <a href="https://jramsay.com.au">JR</a>. Proudly powered by <a class="poweredby icon-ghost" href="http://ghost.com">Ghost</a>.</p>
Expand Down
4 changes: 2 additions & 2 deletions post.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
{{content}}

<div class="social">
<a class="icon-twitter" href="http://twitter.com/share?text={{title}}&amp;url={{url absolute="true"}}">
<a class="icon-twitter" href="http://twitter.com/share?text={{title}}&amp;url={{url absolute="true"}}" target="_blank">
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="http://www.facebook.com/sharer.php?u={{url absolute="true"}}">
<a class="icon-facebook" href="http://www.facebook.com/sharer.php?u={{url absolute="true"}}" target="_blank">
<span class="hidden">Facebook</span>
</a>
<!-- <a class="icon-google-plus" href="#"><span class="hidden">Google+</span></a> -->
Expand Down

0 comments on commit a483850

Please sign in to comment.