Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-size: 1em;
}
/* Forms
Expand Down Expand Up @@ -558,7 +558,7 @@ th {
/* FONT PATH
* -------------------------- */
@font-face {
font-family: 'FontAwesome';
font-family: 'HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif';
src: url('http://postach.io/static/themes/_assets/fontawesome/font/fontawesome-webfont.eot?v=3.1.0');
src: url('http://postach.io/static/themes/_assets/fontawesome/font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'), url('http://postach.io/static/themes/_assets/fontawesome/font/fontawesome-webfont.woff?v=3.1.0') format('woff'), url('http://postach.io/static/themes/_assets/fontawesome/font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'), url('http://postach.io/static/themes/_assets/fontawesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');
font-weight: normal;
Expand All @@ -568,7 +568,7 @@ th {
* -------------------------- */
[class^="icon-"],
[class*=" icon-"] {
font-family: FontAwesome;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: normal;
font-style: normal;
text-decoration: inherit;
Expand Down Expand Up @@ -2355,7 +2355,7 @@ body {
font-family: 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 14px;
font-size: 0.875rem;
background-color: #f3f0eb;
background-color: #ffffff;
}
/**
* Global
Expand Down Expand Up @@ -2486,7 +2486,7 @@ blockquote {
font-size: 16px;
font-size: 1rem;
font-weight: 400;
font-family: "Vollkorn";
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif";
line-height: 1.625;
}
blockquote cite {
Expand Down Expand Up @@ -2573,7 +2573,7 @@ code {
}
pre {
background: #ebebeb;
font-family: "Courier 10 Pitch", Courier, monospace;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif", Courier, monospace;
margin-bottom: 15px;
margin-bottom: 0.9375rem;
padding: 15px;
Expand Down Expand Up @@ -2904,7 +2904,7 @@ body {
color: #000;
font-size: 12px;
padding: 10px;
background-color: #1abc9c;
background-color: #ffffff;
border-radius: 7px;
-moz-opacity: 0.3;
-khtml-opacity: 0.3;
Expand Down Expand Up @@ -2987,7 +2987,7 @@ body {
font-size: 0.75rem;
padding: 10px;
padding: 0.625rem;
background-color: #d7d7d7;
background-color: #fff;
border-radius: 7px;
-moz-opacity: 0.3;
-khtml-opacity: 0.3;
Expand Down Expand Up @@ -3199,7 +3199,7 @@ body {
.login input.input-submit {
color: #fff;
border: 0;
background-color: #2eb18d;
background-color: #fff;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
Expand All @@ -3220,7 +3220,7 @@ body {
}
.login .login-error {
display: block;
background-color: #f76643;
background-color: #fff;
color: #fff;
font-size: 10pt;
line-height: 10pt;
Expand Down
6 changes: 5 additions & 1 deletion theme.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ <h1 class="site-title">
<li><a href="/">Home</a></li>
{% if pages %}
{% for page in pages %}
<li><a href="{{ page.permalink }}" class="{{ set_active(page.permalink) }}">{{ page.title }}</a></li>
<li><a href="/tag/videos" class="{{ set_active('/tag/videos') }}">Video</a></li>
{% endfor %}
{% endif %}

<li><a href="{{ page.permalink }}" class="{{ set_active(page.permalink) }}">{{ page.title }}</a></li>
{% endfor %}
{% endif %}
</ul>
Expand Down