plainwhite 0.6 → 0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/404.html +34 -0
- data/README.md +109 -9
- data/_layouts/default.html +142 -28
- data/_layouts/home.html +44 -30
- data/_layouts/post.html +23 -20
- data/_sass/dark.scss +104 -0
- data/_sass/ext/_fonts.scss +20 -9
- data/_sass/ext/_solarized-dark.scss +87 -0
- data/_sass/plain.scss +238 -144
- data/_sass/search.scss +130 -0
- data/_sass/toggle.scss +59 -0
- data/assets/css/style.scss +10 -1
- data/assets/font/fontello-config.json +242 -0
- data/assets/font/fontello.eot +0 -0
- data/assets/font/fontello.svg +23 -1
- data/assets/font/fontello.ttf +0 -0
- data/assets/font/fontello.woff +0 -0
- data/assets/font/fontello.woff2 +0 -0
- data/assets/js/darkmode.js +33 -0
- data/assets/js/search.js +43 -0
- data/assets/js/simple-jekyll-search.min.js +6 -0
- data/sitemap.xml +25 -0
- metadata +17 -7
data/_layouts/post.html
CHANGED
@@ -1,36 +1,39 @@
|
|
1
1
|
---
|
2
2
|
layout: default
|
3
3
|
---
|
4
|
-
{%- assign date_format = site.
|
4
|
+
{%- assign date_format = site.plainwhite.date_format | default: "%b %-d, %Y" -%}
|
5
5
|
<div class="post-container">
|
6
|
-
<a class="post-link" href="{{ page.url | relative_url }}">
|
7
|
-
|
8
|
-
</a>
|
9
|
-
<div class="post-meta">
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
</
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
{
|
21
|
-
|
6
|
+
<a class="post-link" href="{{ page.url | relative_url }}">
|
7
|
+
<h2 class="post-title">{{ page.title | escape }}</h2>
|
8
|
+
</a>
|
9
|
+
<div class="post-meta">
|
10
|
+
<div class="post-date"><i class="icon-calendar"></i>{{ page.date | date: date_format }}</div>
|
11
|
+
{%- if page.categories.size > 0 -%}
|
12
|
+
<ul class="post-categories">
|
13
|
+
{%- for tag in page.categories -%}
|
14
|
+
<li>{{ tag }}</li>
|
15
|
+
{%- endfor -%}
|
16
|
+
</ul>
|
17
|
+
{%- endif -%}
|
18
|
+
</div>
|
19
|
+
<div class="post">
|
20
|
+
{{ content }}
|
21
|
+
</div>
|
22
|
+
{%- if site.plainwhite.disqus_shortname -%}
|
23
|
+
<div id="disqus_thread" style="margin-top:25px"></div>
|
22
24
|
<script>
|
23
25
|
var disqus_config = function () {
|
24
26
|
this.page.url = '{{ page.url | absolute_url }}';
|
25
27
|
this.page.identifier = '{{ page.url | absolute_url }}';
|
26
28
|
};
|
27
|
-
(function() {
|
29
|
+
(function () {
|
28
30
|
var d = document, s = d.createElement('script');
|
29
31
|
s.src = 'https://{{ site.plainwhite.disqus_shortname }}.disqus.com/embed.js';
|
30
32
|
s.setAttribute('data-timestamp', +new Date());
|
31
33
|
(d.head || d.body).appendChild(s);
|
32
34
|
})();
|
33
35
|
</script>
|
34
|
-
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments
|
36
|
+
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments
|
37
|
+
powered by Disqus.</a></noscript>
|
38
|
+
{%- endif -%}
|
35
39
|
</div>
|
36
|
-
{%- endif -%}
|
data/_sass/dark.scss
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
.dark,
|
2
|
+
.dark * {
|
3
|
+
$dark_text_color: #f6f6f6;
|
4
|
+
$dark_link_color: #4da3ff;
|
5
|
+
background-color: #171717;
|
6
|
+
color: $dark_text_color;
|
7
|
+
border-color: #e6e6e6;
|
8
|
+
|
9
|
+
.social [class^="icon-"] {
|
10
|
+
color: $dark_text_color
|
11
|
+
}
|
12
|
+
|
13
|
+
#posts-label {
|
14
|
+
color: $dark_text_color;
|
15
|
+
border-bottom: 1px solid #272727;
|
16
|
+
}
|
17
|
+
|
18
|
+
@import 'ext/solarized-dark';
|
19
|
+
.highlight, .highlight *
|
20
|
+
{
|
21
|
+
background-color: #00080a;
|
22
|
+
color: #93a1a1;
|
23
|
+
}
|
24
|
+
|
25
|
+
div.highlight-dark {
|
26
|
+
padding: 5px 20px;
|
27
|
+
}
|
28
|
+
pre.highlight-dark, code {
|
29
|
+
font-family: 'Consolas', Menlo, monospace;
|
30
|
+
line-height: 1.4em;
|
31
|
+
tab-size: 4;
|
32
|
+
}
|
33
|
+
|
34
|
+
.post-categories {
|
35
|
+
li {
|
36
|
+
background-color: #333;
|
37
|
+
color: #fff;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
a {
|
42
|
+
color: $dark_link_color;
|
43
|
+
}
|
44
|
+
#title a {
|
45
|
+
color: #fff;
|
46
|
+
&:hover {
|
47
|
+
color: $dark_link_color;
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
.posts-labelgroup {
|
52
|
+
|
53
|
+
.search-results {
|
54
|
+
background-color: #333;
|
55
|
+
|
56
|
+
a {
|
57
|
+
color: white;
|
58
|
+
|
59
|
+
&:hover {
|
60
|
+
background-color: #171717;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
.search-section i {
|
66
|
+
background-color: transparent;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
.posts-labelgroup:hover {
|
71
|
+
|
72
|
+
i {
|
73
|
+
color: white;
|
74
|
+
}
|
75
|
+
|
76
|
+
input {
|
77
|
+
color: white;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
|
82
|
+
.posts-labelgroup.focus-within {
|
83
|
+
|
84
|
+
.search-section {
|
85
|
+
background-color: #333;
|
86
|
+
}
|
87
|
+
|
88
|
+
input {
|
89
|
+
color: $dark_text_color;
|
90
|
+
}
|
91
|
+
|
92
|
+
i {
|
93
|
+
color: white;
|
94
|
+
}
|
95
|
+
}
|
96
|
+
}
|
97
|
+
.dark table {
|
98
|
+
th, td {
|
99
|
+
border: 1px solid #333;
|
100
|
+
}
|
101
|
+
th {
|
102
|
+
background-color: #0d0d0d;
|
103
|
+
}
|
104
|
+
}
|
data/_sass/ext/_fonts.scss
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
@font-face {
|
2
2
|
font-family: 'fontello';
|
3
|
-
src: url('../font/fontello.eot?
|
4
|
-
src: url('../font/fontello.eot?
|
5
|
-
url('../font/fontello.woff2?
|
6
|
-
url('../font/fontello.woff?
|
7
|
-
url('../font/fontello.ttf?
|
8
|
-
url('../font/fontello.svg?
|
3
|
+
src: url('../font/fontello.eot?37382099');
|
4
|
+
src: url('../font/fontello.eot?37382099#iefix') format('embedded-opentype'),
|
5
|
+
url('../font/fontello.woff2?37382099') format('woff2'),
|
6
|
+
url('../font/fontello.woff?37382099') format('woff'),
|
7
|
+
url('../font/fontello.ttf?37382099') format('truetype'),
|
8
|
+
url('../font/fontello.svg?37382099#fontello') format('svg');
|
9
9
|
font-weight: normal;
|
10
10
|
font-style: normal;
|
11
11
|
}
|
@@ -15,7 +15,7 @@
|
|
15
15
|
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
16
16
|
@font-face {
|
17
17
|
font-family: 'fontello';
|
18
|
-
src: url('../font/fontello.svg?
|
18
|
+
src: url('../font/fontello.svg?37382099#fontello') format('svg');
|
19
19
|
}
|
20
20
|
}
|
21
21
|
*/
|
@@ -24,7 +24,7 @@
|
|
24
24
|
font-family: "fontello";
|
25
25
|
font-style: normal;
|
26
26
|
font-weight: normal;
|
27
|
-
speak:
|
27
|
+
speak: never;
|
28
28
|
|
29
29
|
display: inline-block;
|
30
30
|
text-decoration: inherit;
|
@@ -56,6 +56,17 @@
|
|
56
56
|
}
|
57
57
|
|
58
58
|
.icon-calendar:before { content: '\e800'; } /* '' */
|
59
|
+
.icon-calendar-1:before { content: '\e801'; } /* '' */
|
60
|
+
.icon-search:before { content: '\e805'; } /* '' */
|
59
61
|
.icon-github-circled:before { content: '\f09b'; } /* '' */
|
62
|
+
.icon-pinterest-squared:before { content: '\f0d3'; } /* '' */
|
63
|
+
.icon-youtube:before { content: '\f167'; } /* '' */
|
64
|
+
.icon-instagram:before { content: '\f16d'; } /* '' */
|
65
|
+
.icon-flickr:before { content: '\f16e'; } /* '' */
|
66
|
+
.icon-dribbble:before { content: '\f17d'; } /* '' */
|
67
|
+
.icon-gitlab:before { content: '\f296'; } /* '' */
|
68
|
+
.icon-telegram:before { content: '\f2c6'; } /* '' */
|
60
69
|
.icon-twitter-squared:before { content: '\f304'; } /* '' */
|
61
|
-
.icon-
|
70
|
+
.icon-facebook-squared:before { content: '\f308'; } /* '' */
|
71
|
+
.icon-linkedin-squared:before { content: '\f30c'; } /* '' */
|
72
|
+
.icon-soundcloud:before { content: '\f348'; } /* '' */
|
@@ -0,0 +1,87 @@
|
|
1
|
+
/* Solarized Dark
|
2
|
+
|
3
|
+
For use with Jekyll and Pygments
|
4
|
+
|
5
|
+
http://ethanschoonover.com/solarized
|
6
|
+
|
7
|
+
SOLARIZED HEX ROLE
|
8
|
+
--------- -------- ------------------------------------------
|
9
|
+
base03 #002b36 background
|
10
|
+
base01 #586e75 comments / secondary content
|
11
|
+
base1 #93a1a1 body text / default code / primary content
|
12
|
+
orange #cb4b16 constants
|
13
|
+
red #dc322f regex, special keywords
|
14
|
+
blue #268bd2 reserved keywords
|
15
|
+
cyan #2aa198 strings, numbers
|
16
|
+
green #859900 operators, other keywords
|
17
|
+
*/
|
18
|
+
|
19
|
+
.highlight { background-color: #002b36; color: #93a1a1 }
|
20
|
+
.highlight .c { color: #586e75 } /* Comment */
|
21
|
+
.highlight .err { color: #93a1a1 } /* Error */
|
22
|
+
.highlight .g { color: #93a1a1 } /* Generic */
|
23
|
+
.highlight .k { color: #859900 } /* Keyword */
|
24
|
+
.highlight .l { color: #93a1a1 } /* Literal */
|
25
|
+
.highlight .n { color: #93a1a1 } /* Name */
|
26
|
+
.highlight .o { color: #859900 } /* Operator */
|
27
|
+
.highlight .x { color: #cb4b16 } /* Other */
|
28
|
+
.highlight .p { color: #93a1a1 } /* Punctuation */
|
29
|
+
.highlight .cm { color: #586e75 } /* Comment.Multiline */
|
30
|
+
.highlight .cp { color: #859900 } /* Comment.Preproc */
|
31
|
+
.highlight .c1 { color: #586e75 } /* Comment.Single */
|
32
|
+
.highlight .cs { color: #859900 } /* Comment.Special */
|
33
|
+
.highlight .gd { color: #2aa198 } /* Generic.Deleted */
|
34
|
+
.highlight .ge { color: #93a1a1; font-style: italic } /* Generic.Emph */
|
35
|
+
.highlight .gr { color: #dc322f } /* Generic.Error */
|
36
|
+
.highlight .gh { color: #cb4b16 } /* Generic.Heading */
|
37
|
+
.highlight .gi { color: #859900 } /* Generic.Inserted */
|
38
|
+
.highlight .go { color: #93a1a1 } /* Generic.Output */
|
39
|
+
.highlight .gp { color: #93a1a1 } /* Generic.Prompt */
|
40
|
+
.highlight .gs { color: #93a1a1; font-weight: bold } /* Generic.Strong */
|
41
|
+
.highlight .gu { color: #cb4b16 } /* Generic.Subheading */
|
42
|
+
.highlight .gt { color: #93a1a1 } /* Generic.Traceback */
|
43
|
+
.highlight .kc { color: #cb4b16 } /* Keyword.Constant */
|
44
|
+
.highlight .kd { color: #268bd2 } /* Keyword.Declaration */
|
45
|
+
.highlight .kn { color: #859900 } /* Keyword.Namespace */
|
46
|
+
.highlight .kp { color: #859900 } /* Keyword.Pseudo */
|
47
|
+
.highlight .kr { color: #268bd2 } /* Keyword.Reserved */
|
48
|
+
.highlight .kt { color: #dc322f } /* Keyword.Type */
|
49
|
+
.highlight .ld { color: #93a1a1 } /* Literal.Date */
|
50
|
+
.highlight .m { color: #2aa198 } /* Literal.Number */
|
51
|
+
.highlight .s { color: #2aa198 } /* Literal.String */
|
52
|
+
.highlight .na { color: #93a1a1 } /* Name.Attribute */
|
53
|
+
.highlight .nb { color: #B58900 } /* Name.Builtin */
|
54
|
+
.highlight .nc { color: #268bd2 } /* Name.Class */
|
55
|
+
.highlight .no { color: #cb4b16 } /* Name.Constant */
|
56
|
+
.highlight .nd { color: #268bd2 } /* Name.Decorator */
|
57
|
+
.highlight .ni { color: #cb4b16 } /* Name.Entity */
|
58
|
+
.highlight .ne { color: #cb4b16 } /* Name.Exception */
|
59
|
+
.highlight .nf { color: #268bd2 } /* Name.Function */
|
60
|
+
.highlight .nl { color: #93a1a1 } /* Name.Label */
|
61
|
+
.highlight .nn { color: #93a1a1 } /* Name.Namespace */
|
62
|
+
.highlight .nx { color: #93a1a1 } /* Name.Other */
|
63
|
+
.highlight .py { color: #93a1a1 } /* Name.Property */
|
64
|
+
.highlight .nt { color: #268bd2 } /* Name.Tag */
|
65
|
+
.highlight .nv { color: #268bd2 } /* Name.Variable */
|
66
|
+
.highlight .ow { color: #859900 } /* Operator.Word */
|
67
|
+
.highlight .w { color: #93a1a1 } /* Text.Whitespace */
|
68
|
+
.highlight .mf { color: #2aa198 } /* Literal.Number.Float */
|
69
|
+
.highlight .mh { color: #2aa198 } /* Literal.Number.Hex */
|
70
|
+
.highlight .mi { color: #2aa198 } /* Literal.Number.Integer */
|
71
|
+
.highlight .mo { color: #2aa198 } /* Literal.Number.Oct */
|
72
|
+
.highlight .sb { color: #586e75 } /* Literal.String.Backtick */
|
73
|
+
.highlight .sc { color: #2aa198 } /* Literal.String.Char */
|
74
|
+
.highlight .sd { color: #93a1a1 } /* Literal.String.Doc */
|
75
|
+
.highlight .s2 { color: #2aa198 } /* Literal.String.Double */
|
76
|
+
.highlight .se { color: #cb4b16 } /* Literal.String.Escape */
|
77
|
+
.highlight .sh { color: #93a1a1 } /* Literal.String.Heredoc */
|
78
|
+
.highlight .si { color: #2aa198 } /* Literal.String.Interpol */
|
79
|
+
.highlight .sx { color: #2aa198 } /* Literal.String.Other */
|
80
|
+
.highlight .sr { color: #dc322f } /* Literal.String.Regex */
|
81
|
+
.highlight .s1 { color: #2aa198 } /* Literal.String.Single */
|
82
|
+
.highlight .ss { color: #2aa198 } /* Literal.String.Symbol */
|
83
|
+
.highlight .bp { color: #268bd2 } /* Name.Builtin.Pseudo */
|
84
|
+
.highlight .vc { color: #268bd2 } /* Name.Variable.Class */
|
85
|
+
.highlight .vg { color: #268bd2 } /* Name.Variable.Global */
|
86
|
+
.highlight .vi { color: #268bd2 } /* Name.Variable.Instance */
|
87
|
+
.highlight .il { color: #2aa198 } /* Literal.Number.Integer.Long */
|
data/_sass/plain.scss
CHANGED
@@ -1,184 +1,278 @@
|
|
1
|
-
@import
|
2
|
-
@import
|
3
|
-
@import
|
1
|
+
@import "ext/fonts";
|
2
|
+
@import "ext/normalize";
|
3
|
+
@import "syntax";
|
4
4
|
|
5
|
-
$linkColor: #
|
5
|
+
$linkColor: #0a59b0;
|
6
6
|
$mobileW: 768px;
|
7
7
|
$smallMobileW: 480px;
|
8
8
|
$bigScreenW: 1600px;
|
9
9
|
$leftWidth: 220px;
|
10
10
|
|
11
|
-
|
12
|
-
|
11
|
+
*,
|
12
|
+
*:before,
|
13
|
+
*:after {
|
14
|
+
box-sizing: border-box;
|
13
15
|
}
|
14
16
|
|
15
17
|
body {
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
18
|
+
font-family: "Raleway", sans-serif;
|
19
|
+
font-size: 16px;
|
20
|
+
line-height: 1.2em;
|
21
|
+
margin: 0;
|
22
|
+
-webkit-font-smoothing: antialiased;
|
23
|
+
-moz-osx-font-smoothing: grayscale;
|
22
24
|
}
|
23
25
|
|
24
|
-
img,
|
25
|
-
|
26
|
+
img,
|
27
|
+
embed,
|
28
|
+
object,
|
29
|
+
video {
|
30
|
+
max-width: 100%;
|
26
31
|
}
|
27
32
|
|
28
33
|
a {
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
+
color: #000;
|
35
|
+
transition: color 0.3s;
|
36
|
+
&:hover {
|
37
|
+
color: $linkColor;
|
38
|
+
}
|
34
39
|
}
|
35
40
|
|
36
41
|
h2 {
|
37
|
-
|
42
|
+
margin: 0.7em 0;
|
38
43
|
}
|
39
44
|
main {
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
45
|
+
margin: 0 90px;
|
46
|
+
display: flex;
|
47
|
+
height: 100%;
|
48
|
+
|
49
|
+
@media screen and (min-width: $bigScreenW) {
|
50
|
+
margin: 0 auto;
|
51
|
+
max-width: 1440px;
|
52
|
+
}
|
53
|
+
@media screen and (max-width: 1280px) {
|
54
|
+
margin: 0 75px;
|
55
|
+
}
|
56
|
+
@media screen and (max-width: 1024px) {
|
57
|
+
margin: 0 35px;
|
58
|
+
}
|
59
|
+
|
60
|
+
@media screen and (max-width: $mobileW) {
|
61
|
+
margin: 0 10px;
|
62
|
+
flex-direction: column;
|
63
|
+
}
|
64
|
+
@media screen and (max-width: $smallMobileW) {
|
65
|
+
margin: 0;
|
66
|
+
}
|
67
|
+
|
68
|
+
.content {
|
69
|
+
@media screen and (min-width: $mobileW + 1) {
|
70
|
+
max-width: calc(100% - #{$leftWidth});
|
71
|
+
margin-left: $leftWidth;
|
72
|
+
width: 100%;
|
73
|
+
}
|
74
|
+
}
|
75
|
+
.about {
|
76
|
+
display: flex;
|
77
|
+
height: 100vh;
|
78
|
+
padding-bottom: 15vh;
|
79
|
+
@media screen and (max-width: $mobileW) {
|
80
|
+
height: auto;
|
81
|
+
padding: 10vh 0;
|
82
|
+
}
|
83
|
+
@media screen and (min-width: $mobileW + 1) {
|
84
|
+
position: fixed;
|
85
|
+
max-width: 285px;
|
86
|
+
}
|
87
|
+
min-width: $leftWidth;
|
88
|
+
justify-content: center;
|
89
|
+
flex-direction: column;
|
90
|
+
align-items: center;
|
91
|
+
h2 {
|
92
|
+
font-size: 22px;
|
93
|
+
margin-top: 25px;
|
94
|
+
margin-bottom: 0;
|
95
|
+
color: #222222;
|
96
|
+
font-weight: normal;
|
97
|
+
}
|
98
|
+
.tagline {
|
99
|
+
font-size: 22px;
|
100
|
+
margin-top: 17px;
|
101
|
+
color: #aaa;
|
102
|
+
white-space: pre-wrap;
|
103
|
+
line-height: normal;
|
104
|
+
}
|
105
|
+
img {
|
106
|
+
max-width: 150px;
|
107
|
+
}
|
108
|
+
}
|
109
|
+
}
|
110
|
+
#title {
|
111
|
+
a {
|
112
|
+
text-decoration: none;
|
113
|
+
}
|
100
114
|
}
|
101
115
|
.social {
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
116
|
+
list-style-type: none;
|
117
|
+
padding: 0;
|
118
|
+
margin-top: 0;
|
119
|
+
display: flex;
|
120
|
+
flex-wrap: wrap;
|
121
|
+
justify-content: center;
|
122
|
+
a {
|
123
|
+
margin-bottom: .5em;
|
124
|
+
}
|
125
|
+
li {
|
126
|
+
i {
|
127
|
+
font-size: 34px;
|
128
|
+
}
|
129
|
+
}
|
130
|
+
}
|
131
|
+
|
132
|
+
.navigation {
|
133
|
+
width: 80%;
|
134
|
+
|
135
|
+
ul {
|
136
|
+
list-style-type: none;
|
137
|
+
padding: 0;
|
138
|
+
margin-top: 0;
|
139
|
+
|
140
|
+
li:last-child {
|
141
|
+
a {
|
142
|
+
border-bottom: 0;
|
143
|
+
}
|
144
|
+
}
|
145
|
+
|
146
|
+
a {
|
147
|
+
display: block;
|
148
|
+
font-family: 'Merriweather';
|
149
|
+
text-align: center;
|
150
|
+
padding: 1rem 0;
|
151
|
+
text-decoration: none;
|
152
|
+
border-bottom: 1px solid #ececec;
|
153
|
+
|
154
|
+
@media screen and (max-width: $mobileW) {
|
155
|
+
padding: 2rem 0;
|
156
|
+
}
|
157
|
+
}
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
.post-wrapper {
|
162
|
+
border-bottom: 1px solid #ececec;
|
163
|
+
margin-bottom: 1rem;
|
164
|
+
padding-bottom: 1rem;
|
111
165
|
}
|
112
166
|
|
113
167
|
.post-categories {
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
168
|
+
list-style-type: none;
|
169
|
+
margin: 0;
|
170
|
+
padding: 0;
|
171
|
+
li {
|
172
|
+
font-size: 14px;
|
173
|
+
float: left;
|
174
|
+
background-color: #e3e3e3;
|
175
|
+
padding: 5px 20px;
|
176
|
+
border-radius: 2px;
|
177
|
+
@media screen and (max-width: $mobileW) {
|
178
|
+
margin-top: 5px;
|
179
|
+
}
|
180
|
+
margin-right: 10px;
|
181
|
+
}
|
128
182
|
}
|
129
183
|
.post-date {
|
130
|
-
|
131
|
-
|
184
|
+
margin-right: 10px;
|
185
|
+
color: #555;
|
186
|
+
min-width: 150px;
|
132
187
|
}
|
133
188
|
.post-meta {
|
134
|
-
|
135
|
-
|
136
|
-
|
189
|
+
display: flex;
|
190
|
+
justify-content: space-between;
|
191
|
+
align-items: center;
|
192
|
+
min-height: 30px;
|
193
|
+
@media screen and (max-width: $mobileW) {
|
194
|
+
flex-direction: column;
|
195
|
+
align-items: baseline;
|
196
|
+
.post-date {
|
197
|
+
margin: 10px 0;
|
198
|
+
}
|
199
|
+
}
|
137
200
|
}
|
138
201
|
.post-link {
|
139
|
-
|
202
|
+
text-decoration: none;
|
140
203
|
}
|
141
204
|
|
142
205
|
.post-title {
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
206
|
+
line-height: 1.2em;
|
207
|
+
font-size: 28px;
|
208
|
+
margin-bottom: 10px;
|
209
|
+
}
|
210
|
+
.posts,
|
211
|
+
.post-container {
|
212
|
+
list-style-type: none;
|
213
|
+
margin: 45px 30px;
|
214
|
+
@media screen and (max-width: $smallMobileW) {
|
215
|
+
margin-left: 20px;
|
216
|
+
margin-right: 20px;
|
217
|
+
}
|
218
|
+
@media screen and (max-width: $mobileW) {
|
219
|
+
padding: 0 !important;
|
220
|
+
margin-top: 0;
|
221
|
+
}
|
157
222
|
}
|
158
223
|
.post-container {
|
159
|
-
|
224
|
+
padding-left: 30px;
|
160
225
|
}
|
161
226
|
.post {
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
227
|
+
font-family: "Merriweather", sans-serif;
|
228
|
+
font-weight: 300;
|
229
|
+
color: #222;
|
230
|
+
line-height: 1.9em;
|
231
|
+
p {
|
232
|
+
margin-top: 10px;
|
233
|
+
}
|
234
|
+
a {
|
235
|
+
color: $linkColor;
|
236
|
+
text-decoration: none;
|
237
|
+
transition: border-bottom 0.4s;
|
238
|
+
&:hover {
|
239
|
+
border-bottom: 0.5px solid $linkColor;
|
240
|
+
}
|
241
|
+
}
|
242
|
+
h1,
|
243
|
+
h2,
|
244
|
+
h3,
|
245
|
+
h4,
|
246
|
+
h5,
|
247
|
+
h6 {
|
248
|
+
font-family: Raleway, sans-serif;
|
249
|
+
}
|
250
|
+
}
|
251
|
+
.posts-labelgroup {
|
252
|
+
margin: 0 0 0.67em 0;
|
253
|
+
display: flex;
|
254
|
+
align-items: baseline;
|
255
|
+
border-bottom: 1px solid #eee;
|
174
256
|
}
|
175
257
|
|
176
258
|
#posts-label {
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
259
|
+
font-size: 15px;
|
260
|
+
color: #555;
|
261
|
+
text-transform: uppercase;
|
262
|
+
letter-spacing: 0.5px;
|
263
|
+
padding: 10px 0;
|
264
|
+
font-weight: normal;
|
265
|
+
margin: 0;
|
266
|
+
overflow: hidden;
|
267
|
+
transition: width 0.1s;
|
268
|
+
}
|
269
|
+
table {
|
270
|
+
th, td {
|
271
|
+
padding: 8px 13px;
|
272
|
+
border: 1px solid #dfe2e5;
|
273
|
+
}
|
274
|
+
th {
|
275
|
+
background-color: #eee;
|
276
|
+
font-family: Raleway;
|
277
|
+
}
|
278
|
+
}
|