File tree 5 files changed +10
-5
lines changed
5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ <h2 class="subheading">{{ page.subtitle }}</h2>
140
140
< h5 > < a href ="/tags/ "> FEATURED TAGS</ a > </ h5 >
141
141
< div class ="tags ">
142
142
{% for tag in site.tags %}
143
- {% if tag[1].size > {{site.featured-condition-size}} %}
143
+ {% if tag[1].size > = {{site.featured-condition-size}} %}
144
144
< a href ="/tags/#{{ tag[0] }} " title ="{{ tag[0] }} " rel ="{{ tag[1].size }} ">
145
145
{{ tag[0] }}
146
146
</ a >
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ <h1>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</h1
39
39
< h5 > < a href ="{{'/tags/' | prepend: site.baseurl }} "> FEATURED TAGS</ a > </ h5 >
40
40
< div class ="tags ">
41
41
{% for tag in site.tags %}
42
- {% if tag[1].size > {{site.featured-condition-size}} %}
42
+ {% if tag[1].size > = {{site.featured-condition-size}} %}
43
43
< a href ="{{ site.baseurl }}/tags/#{{ tag[0] }} " title ="{{ tag[0] }} " rel ="{{ tag[1].size }} ">
44
44
{{ tag[0] }}
45
45
</ a >
@@ -88,7 +88,7 @@ <h5>FRIENDS</h5>
88
88
< h5 > < a href ="{{'/tags/' | prepend: site.baseurl }} "> FEATURED TAGS</ a > </ h5 >
89
89
< div class ="tags ">
90
90
{% for tag in site.tags %}
91
- {% if tag[1].size > {{site.featured-condition-size}} %}
91
+ {% if tag[1].size > = {{site.featured-condition-size}} %}
92
92
< a href ="{{ site.baseurl }}/tags/#{{ tag[0] }} " title ="{{ tag[0] }} " rel ="{{ tag[1].size }} ">
93
93
{{ tag[0] }}
94
94
</ a >
Original file line number Diff line number Diff line change 194
194
< h5 > < a href ="/tags/ "> FEATURED TAGS</ a > </ h5 >
195
195
< div class ="tags ">
196
196
{% for tag in site.tags %}
197
- {% if tag[1].size > {{site.featured-condition-size}} %}
197
+ {% if tag[1].size > = {{site.featured-condition-size}} %}
198
198
< a href ="/tags/#{{ tag[0] }} " title ="{{ tag[0] }} " rel ="{{ tag[1].size }} ">
199
199
{{ tag[0] }}
200
200
</ a >
Original file line number Diff line number Diff line change @@ -482,12 +482,15 @@ pre code{
482
482
// Post Preview Pages (Home Page)
483
483
484
484
.post-preview {
485
+ > .post-title {
486
+ color : @brand-primary-green
487
+ }
485
488
> a {
486
489
color : @gray-dark ;
487
490
& :hover ,
488
491
& :focus {
489
492
text-decoration : none ;
490
- color : @brand-primary ;
493
+ color : @brand-primary-red ;
491
494
}
492
495
> .post-title {
493
496
font-size : 21px ;
Original file line number Diff line number Diff line change 1
1
// Variables
2
2
3
3
@brand-primary : #0085A1 ;
4
+ @brand-primary-red : #ea6f5a ;
5
+ @brand-primary-green : #009688 ;
4
6
@gray-dark : lighten (black , 25% );
5
7
@gray : lighten (black , 50% );
6
8
@gray-l : lighten (black , 75% );
You can’t perform that action at this time.
0 commit comments