File tree 5 files changed +48
-18
lines changed
5 files changed +48
-18
lines changed Original file line number Diff line number Diff line change 8
8
9
9
{% for cat in page.tags %}
10
10
{% if cat == page.tags[0] %}
11
- < a class ="tag " href ="/#{{ cat | slugify }} ">
11
+ < a class ="tag-main " href ="/#{{ cat | slugify }} ">
12
12
< strong > {{ cat }}</ strong >
13
13
</ a >
14
14
{% else %}
Original file line number Diff line number Diff line change 9
9
{% for cat in post.tags %}
10
10
{% if cat == post.tags[0] %}
11
11
12
- < strong >
13
- < a class ="tag " href ="/#{{ cat | slugify }} ">
12
+ < a class ="tag-main " href ="/#{{ cat | slugify }} ">
14
13
{{ cat }}
15
14
</ a >
16
- </ strong >
17
15
{% else %}
18
16
,
19
17
< a class ="tag " href ="/#{{ cat | slugify }} ">
Original file line number Diff line number Diff line change @@ -19,11 +19,6 @@ $green: #66ff66;
19
19
$green2 : #2ddbb3 ;
20
20
$orange : #ff2222 ;
21
21
22
- $background_post_first : #cceee6 ;
23
- $background_post_left : #eeeeee ;
24
- $background_post_right : #eeeeee ;
25
- $post_border : #ccccff ;
26
- $post_highlight_color : #ccccff ;
27
22
28
23
// Main theme colors
29
24
// Some cool main top: ;heme colors(violet:#8476ad;blue:#5cacee;red:#ff7373,#ff6f69;green:#6acf64,#2ddbb3;orange:#ffa268)
@@ -34,6 +29,15 @@ $navbar-hover-color:$green; // navbar hover color (site name and navbar l
34
29
$link-color : $orange ; // normal hyperlink color other than the ones above.
35
30
36
31
32
+ $background_post_first : #cceee6 ;
33
+ $background_post_left : #eeeeee ;
34
+ $background_post_right : #eeeeee ;
35
+ $post_border : #ccccff ;
36
+ // $post_highlight_color: #ccccff;
37
+ $post_highlight_color : $mono-color ;
38
+
39
+
40
+
37
41
// Heading colors
38
42
// You can play around with these too!
39
43
$h1-color : $mono-color ;
Original file line number Diff line number Diff line change 45
45
{% else %}
46
46
47
47
< div class ="entry " >
48
- < h1 >
49
- {{ loopindex }} {{ postcounter }}
50
- < a href ="{{ site.baseurl }}{{ post.url }} ">
48
+ < a href ="{{ site.baseurl }}{{ post.url }} ">
49
+ < h1 align ="center " >
51
50
{% include post_categories_icon.html %}
51
+ < br />
52
52
{{ post.title }}
53
- </ a >
54
53
</ h1 >
54
+ </ a >
55
55
56
56
{{ post.excerpt }}
57
57
< div class ="categories ">
Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ nav {
265
265
266
266
.post_table_container {
267
267
margin : 0 auto ;
268
- max-width : 1680 px ;
268
+ max-width : 1280 px ;
269
269
padding : 0 10px ;
270
270
width : 100% ;
271
271
table-layout : fixed ;
@@ -278,20 +278,48 @@ nav {
278
278
}
279
279
280
280
.post_table_article_first {
281
- border : 6 px solid $post_border ;
281
+ border : 4 px solid $post_border ;
282
282
background-color : $background_post_first ;
283
283
padding : 0 10px ;
284
284
}
285
285
286
+
287
+ .categories {
288
+ color : $mono-color ;
289
+
290
+ a {
291
+ color : $mono-color ;
292
+ }
293
+ a :hover {
294
+ color : red !important ;
295
+ }
296
+
297
+ // first tag, means it is important
298
+ .tag-main {
299
+ font-weight : bold ;
300
+ }
301
+
302
+ // other categories/tags
303
+ .tag {
304
+ font-style : slant;
305
+ }
306
+ }
307
+
308
+
286
309
.table_posts {
287
310
border-spacing : 10px ;
288
311
border-collapse : separate ;
289
312
290
- // hightlight table cells when mouse hover
313
+ // highlight table cells when mouse hover
291
314
td :hover {
292
- background : $post_highlight_color !important ;
293
- }
294
315
316
+ border : 4px solid red !important ;
317
+ // background: $post_highlight_color !important;
318
+
319
+ a > h1 {
320
+ color : red !important ;
321
+ }
322
+ }
295
323
}
296
324
297
325
.post_table_article_right {
You can’t perform that action at this time.
0 commit comments