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
30 changes: 17 additions & 13 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700,600,300);
@import url(http://postach.io/static/themes/_assets/bootstrap/css/bootstrap.min.css);
@import url(http://postach.io/static/themes/_assets/bootstrap/css/bootstrap-responsive.min.css);
/**
* Utilities
* Mixins used throughout themes and the main site
*/
/**
* REM units mixin with PX fallback for legacy browsers with no REM unit support
* https://github.com/christopher-ramirez/remixings
*/

@import url('http://fontweb.ir/css/B Nazanin={fontweb.ir}.css');

.hide {
display: none;
}
Expand Down Expand Up @@ -175,7 +169,7 @@
/* IE7 */
/* used for styling post content in themes */
body {
font-family: 'Open Sans', helvetica, sans-serif;
font-family:verdana;
}
a {
color: #2eb18d;
Expand Down Expand Up @@ -260,10 +254,15 @@ h3,
h4,
h5,
h6 {
direction:rtl;
font-family:B Nazanin,'B Nazanin',tahoma;
margin-top: 20px;
font-weight: 400 !important;
}
.post .post-content {
font-family:B Nazanin,'B Nazanin';
font-size:14px;
direction:rtl;
display: block;
}
.post .post-content ul,
Expand All @@ -274,7 +273,11 @@ h6 {
.post .post-content div,
.post .post-content b,
.post .post-content i {
text-align: left;
color:#444;
font-size:23px;
text-align: justify;
direction:rtl;
line-height:25px !important
}
.post .post-content ul strong,
.post .post-content ol strong,
Expand Down Expand Up @@ -323,7 +326,7 @@ h6 {
}
.post .post-content ul {
padding: 7.5px 0 11.25px;
margin-left: 50px;
margin-right: 50px;
}
.post .post-content ul li {
padding: 0;
Expand All @@ -332,7 +335,7 @@ h6 {
}
.post .post-content ol {
padding: 7.5px 0 11.25px;
margin-left: 30px;
margin-right: 30px;
}
.post .post-content ol li {
padding: 0;
Expand Down Expand Up @@ -427,6 +430,7 @@ h6 {
padding-top: 20px;
}
.post p {
font-family:verdana !important;
font-size: 14px;
line-height: 24px;
}
Expand Down
38 changes: 0 additions & 38 deletions theme.html
Original file line number Diff line number Diff line change
Expand Up @@ -233,44 +233,6 @@ <h1>{{ page.title }}</h1>
<img class="avatar" src="{{ site.avatar }}" alt="{{ site.author }}" />
<p>{{ site.bio }}</p>
<p>{{ theme.social.follow }}</p>
<ul class="unstyled social">
{% if site.twitter %}
<li>
<a href="{{ site.twitter }}" title="Twitter" target="_blank">
<i class="icon-twitter"></i> Twitter
</a>
</li>
{% endif %}

{% if site.facebook %}
<li>
<a href="{{ site.facebook }}" title="Facebook" target="_blank">
<i class="icon-facebook-sign"></i> Facebook
</a>
</li>
{% endif %}

{% if site.googleplus %}
<li>
<a href="{{ site.googleplus }}?rel=author" title="Google+" target="_blank">
<i class="icon-google-plus"></i> Google+
</a>
</li>
{% endif %}

{% if site.linkedin %}
<li>
<a href="{{ site.linkedin }}" title="LinkedIn" target="_blank">
<i class="icon-linkedin"></i> LinkedIn
</a>
</li>
{% endif %}
<li>
<a href="{{ site.atom_url }}" title="RSS" target="_blank">
<i class="icon-rss"></i> RSS
</a>
</li>
</ul>
</div>

{% if site.tags %}
Expand Down