blogging-site-theme 0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/_data/blog/authors.yml +5 -0
- data/_data/blog/blog.yml +3 -0
- data/_data/blog/footer.json +86 -0
- data/_data/blog/nav.json +18 -0
- data/_data/blog/share.yml +28 -0
- data/_data/dataFiles/en/data.json +34 -0
- data/_data/theme/UI.json +3 -0
- data/_includes/author_bio.html +12 -0
- data/_includes/custom-head.html +55 -0
- data/_includes/disqus_comments.html +11 -0
- data/_includes/footer/index.html +51 -0
- data/_includes/google-analytics.html +8 -0
- data/_includes/header/index.html +10 -0
- data/_includes/header/nav-menu.html +37 -0
- data/_includes/pagination.html +36 -0
- data/_includes/paginationPostPage.html +18 -0
- data/_includes/postbox.html +31 -0
- data/_includes/scripts.html +2 -0
- data/_includes/search-lunr.html +11 -0
- data/_includes/section/alertbar.html +12 -0
- data/_includes/section/count.html +24 -0
- data/_includes/section/faq.html +32 -0
- data/_includes/section/recent_posts.html +42 -0
- data/_includes/section/related_post.html +55 -0
- data/_layouts/blog.html +75 -0
- data/_layouts/categories.html +25 -0
- data/_layouts/post.html +78 -0
- data/_sass/_main.scss +25 -0
- data/_sass/theme/_blog.scss +242 -0
- data/_sass/theme/_faq.scss +69 -0
- data/_sass/theme/_footer.scss +65 -0
- data/_sass/theme/_header.scss +184 -0
- data/_sass/theme/_pagination.scss +23 -0
- data/_sass/theme/pagination2.scss +36 -0
- data/assets/css/main.scss +7 -0
- data/assets/images/bebo-logo.svg +41 -0
- data/assets/images/bg.jpg +0 -0
- data/assets/images/blogger-logotype.svg +48 -0
- data/assets/images/cancel.png +0 -0
- data/assets/images/favicon-16x16.png +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/manpreet.png +0 -0
- data/assets/images/menu.png +0 -0
- data/assets/images/ram.png +0 -0
- data/assets/js/lazyload.js +258 -0
- data/assets/js/lunr.js +2977 -0
- data/assets/js/lunrsearchengine.js +89 -0
- data/assets/js/thefrontendworld.js +13 -0
- data/readme.md +338 -0
- metadata +134 -0
@@ -0,0 +1,31 @@
|
|
1
|
+
<div class="col-lg-3 col-md-6 mb-4 card-group">
|
2
|
+
<div class="card h-100" style="border-radius:16px" id="{{post.categories}}">
|
3
|
+
<a href="{{ post.url }}">
|
4
|
+
<img src="{{ post.image }}" class="card-img-top p-3" style="border-radius: 25px; height: 180px"
|
5
|
+
alt="not found">
|
6
|
+
</a>
|
7
|
+
<div class="card-body">
|
8
|
+
<a href="{{ post.url }}" class="anchor_link">
|
9
|
+
<h1 class="card-title mb-4">{{ post.title }}</h1>
|
10
|
+
</a>
|
11
|
+
</div>
|
12
|
+
{% assign author = site.data.blog.authors[post.author] %}
|
13
|
+
<div class="card-footer">
|
14
|
+
<div class="wrapfooter">
|
15
|
+
<span class="meta-footer-thumb">
|
16
|
+
<img class="author-thumb" src="{{ author.image }}" alt="{{ author.name }}">
|
17
|
+
</span>
|
18
|
+
<span class="author-meta">
|
19
|
+
<span class="post-name">
|
20
|
+
<a target="_blank" href="/">{{post.author}}</a>
|
21
|
+
</span><br>
|
22
|
+
<span class="post-date">{{post.date | date_to_string }}</span>
|
23
|
+
</span>
|
24
|
+
<span class="post-read-more">
|
25
|
+
<a href="{{ post.url }}" title="Read Story">
|
26
|
+
Read More
|
27
|
+
</a></span>
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
</div>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<form class="bd-search m-0" onSubmit="return lunr_search(document.getElementById('lunrsearch').value);">
|
2
|
+
<input type="text" class="form-control text-small launch-modal-search" id="lunrsearch" name="q" maxlength="255"
|
3
|
+
value="" placeholder="Type and enter...">
|
4
|
+
</form>
|
5
|
+
|
6
|
+
<div id="lunrsearchresults">
|
7
|
+
<ul></ul>
|
8
|
+
</div>
|
9
|
+
|
10
|
+
<script src=" {{site.url}}/assets/js/lunr.js"></script>
|
11
|
+
<script src="{{site.url}}/assets/js/lunrsearchengine.js"></script>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<div class="alertbar" style="display: none;">
|
2
|
+
<div class="container text-center">
|
3
|
+
<span style="font-size: 15px;">{{site.data.blog.alertbar.span}}</span>
|
4
|
+
<form>
|
5
|
+
<div class="mc-field-group">
|
6
|
+
<input type="email" placeholder="Email" name="EMAIL" class="required email" id="mce-EMAIL"
|
7
|
+
autocomplete="on" required="">
|
8
|
+
<input type="submit" value="Subscribe" name="subscribe">
|
9
|
+
</div>
|
10
|
+
</form>
|
11
|
+
</div>
|
12
|
+
</div>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
{%- assign footerData2 = site.data.blog.footer -%}
|
2
|
+
{%- assign theme = site.data.theme.UI -%}
|
3
|
+
<div class="explore" style="background: {{theme.color}}">
|
4
|
+
<h2 class="animate__animated animate__bounce animate__infinite">Explore</h2>
|
5
|
+
<span class="d-none d-md-inline animate__animated animate__backInDown animate__infinite"
|
6
|
+
style="font-size: 25px;">↓</span>
|
7
|
+
<ul>
|
8
|
+
{% assign categories_list = site.categories %}
|
9
|
+
{% if categories_list.first[0] == null %}
|
10
|
+
{% for category in categories_list %}
|
11
|
+
<a class="cat mt-1 mb-1" href="/categories#{{ category | url_escape | strip | replace: ' ', '-' }}">{{ category
|
12
|
+
|
|
13
|
+
camelcase }} ({{ site.tags[category].size }})</a>
|
14
|
+
{% endfor %}
|
15
|
+
{% else %}
|
16
|
+
{% for category in categories_list %}
|
17
|
+
<a class="cat mt-1 mb-1" href="/categories#{{ category[0] | url_escape | strip | replace: ' ', '-' }}">{{
|
18
|
+
category[0]
|
19
|
+
| camelcase }} ({{ category[1].size }})</a>
|
20
|
+
{% endfor %}
|
21
|
+
{% endif %}
|
22
|
+
{% assign categories_list = nil %}
|
23
|
+
</ul>
|
24
|
+
</div>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
|
2
|
+
{%- assign fileName = page.fileName -%}
|
3
|
+
{%- assign folderName = page.folderName -%}
|
4
|
+
{%- assign lang = page.lang -%}
|
5
|
+
|
6
|
+
<!-- Theme Config -->
|
7
|
+
<!-- {%- assign theme = site.data.theme.UI -%}
|
8
|
+
|
9
|
+
{% if lang %}
|
10
|
+
{%- assign dataToShow = site.data[folderName][lang][fileName] -%}
|
11
|
+
|
12
|
+
{% elsif folderName %}
|
13
|
+
{%- assign dataToShow = site.data[folderName][fileName] -%}
|
14
|
+
|
15
|
+
{% else %}
|
16
|
+
{%- assign dataToShow = site.data[fileName] -%}
|
17
|
+
{% endif %}
|
18
|
+
|
19
|
+
|
20
|
+
{% if dataToShow %}
|
21
|
+
<h1 class="faq_heading">{{dataToShow.faq_heading}}</h1>
|
22
|
+
{% endif %}
|
23
|
+
<main>
|
24
|
+
{% for entry in dataToShow.faqList%}
|
25
|
+
<details>
|
26
|
+
<summary style="background-color: {{theme.color}}">{{entry.question}}</summary>
|
27
|
+
<div class="faq__content">
|
28
|
+
<p>{{entry.answer}}</p>
|
29
|
+
</div>
|
30
|
+
</details>
|
31
|
+
{% endfor %}
|
32
|
+
</main>
|
@@ -0,0 +1,42 @@
|
|
1
|
+
<div class="container">
|
2
|
+
<div class="relatedPosts">
|
3
|
+
<h1 class="related_post_heading">Recent Posts</h1>
|
4
|
+
<div class="row">
|
5
|
+
{% for recent in site.posts offset:1 limit:3 %}
|
6
|
+
{% if recent.url != page.url %}
|
7
|
+
<div class="col-lg-4 col-md-6 mb-4 card-group">
|
8
|
+
<div class="card h-100">
|
9
|
+
<a href="{{ recent.url }}">
|
10
|
+
<img src="{{ recent.image }}" class="card-img-top" alt="" style="height: 180px">
|
11
|
+
</a>
|
12
|
+
<div class="card-body">
|
13
|
+
<a class="text-decoration-none text-dark" href="{{ recent.url }}" class="anchor_link">
|
14
|
+
<h4 class="card-title mb-4 text-left">{{ recent.title }}</h4>
|
15
|
+
</a>
|
16
|
+
</div>
|
17
|
+
{% assign author = site.data.blog.authors[recent.author] %}
|
18
|
+
<div class="card-footer bg-white">
|
19
|
+
<div class="wrapfooter">
|
20
|
+
{% if recent.author %}
|
21
|
+
<span class="meta-footer-thumb">
|
22
|
+
<img class="author-thumb" src="{{ author.image }}" alt="{{ author.name }}">
|
23
|
+
</span>
|
24
|
+
{% endif %}
|
25
|
+
|
26
|
+
<span class="author-meta">
|
27
|
+
<span class="recent-name">
|
28
|
+
<a target="_blank" href="/blog">{{recent.author}}</a>
|
29
|
+
</span><br>
|
30
|
+
<span class="post-date">{{recent.date | date_to_string }}</span>
|
31
|
+
</span>
|
32
|
+
<span class="post-read-more"><a class="text-dark" href="{{ recent.url }}"
|
33
|
+
title="Read Story">Read More</a></span>
|
34
|
+
</div>
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
</div>
|
38
|
+
{% endif %}
|
39
|
+
{% endfor %}
|
40
|
+
</div>
|
41
|
+
</div>
|
42
|
+
</div>
|
@@ -0,0 +1,55 @@
|
|
1
|
+
<div class="container">
|
2
|
+
<div class="relatedPosts">
|
3
|
+
{%- if page.categories -%}
|
4
|
+
<h2 class="pt-5 pb-0 related_post_heading">You might also like</h2>
|
5
|
+
{%- endif -%}
|
6
|
+
|
7
|
+
<div class="row">
|
8
|
+
{% for post in site.posts %}
|
9
|
+
|
10
|
+
{% for category in post.categories %}
|
11
|
+
{% if post.url != page.url %}
|
12
|
+
{% if page.categories contains category %}
|
13
|
+
|
14
|
+
<div class="col-lg-4 col-md-6 mb-4 card-group">
|
15
|
+
<div class="card h-100">
|
16
|
+
<a href="{{ post.url }}">
|
17
|
+
<img src="{{ post.image }}"
|
18
|
+
style="height: 150px; border-radius: 5px;"
|
19
|
+
class="card-img-top" alt="">
|
20
|
+
</a>
|
21
|
+
<div class="card-body">
|
22
|
+
<a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
|
23
|
+
<h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
|
24
|
+
</a>
|
25
|
+
</div>
|
26
|
+
{% assign author = site.data.blog.authors[post.author] %}
|
27
|
+
<div class="card-footer bg-white">
|
28
|
+
<div class="wrapfooter" style="justify-content: space-between;
|
29
|
+
">
|
30
|
+
{% if post.author %}
|
31
|
+
<span class="meta-footer-thumb">
|
32
|
+
<img class="author-thumb" src="{{ author.image }}" alt="{{ author.name }}">
|
33
|
+
</span>
|
34
|
+
{% endif %}
|
35
|
+
|
36
|
+
<!-- <span class="author-meta">
|
37
|
+
<span class="post-name">
|
38
|
+
<a target="_blank" href="/blog">{{post.author}}</a>
|
39
|
+
</span><br>
|
40
|
+
<span class="post-date">{{post.date | date_to_string }}</span>
|
41
|
+
</span> -->
|
42
|
+
<span class="post-read-more ml-5"><a class="text-dark" href="{{ post.url }}"
|
43
|
+
title="Read Story">Read More</a></span>
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
</div>
|
48
|
+
|
49
|
+
{% endif %}
|
50
|
+
{% endif %}
|
51
|
+
{% endfor %}
|
52
|
+
{% endfor %}
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
</div>
|
data/_layouts/blog.html
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
|
4
|
+
{% include custom-head.html %}
|
5
|
+
|
6
|
+
<body>
|
7
|
+
{%- include header/index.html -%}
|
8
|
+
<section class="section_post">
|
9
|
+
<div class="container px-5">
|
10
|
+
<div class="row justify-content-center section-title-wrap">
|
11
|
+
<div class="col-lg-12 mt-5 ">
|
12
|
+
<h1 style="font-weight: 900;">{{ site.data.blog.blog.h1 }}
|
13
|
+
</h1>
|
14
|
+
<p class="lead mb-5 mt-1" style="font-size: 18px;">
|
15
|
+
{{ site.data.blog.blog.tagline }}
|
16
|
+
</p>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
|
20
|
+
<!-- categories post -->
|
21
|
+
<div class="main-content">
|
22
|
+
{{content}}
|
23
|
+
</div>
|
24
|
+
<!-- close -->
|
25
|
+
|
26
|
+
<div class="row">
|
27
|
+
{% for post in paginator.posts%}
|
28
|
+
<div class="col-lg-4 col-md-6 mb-4 card-group">
|
29
|
+
<div class="card h-100" style="border-radius:16px" id="{{post.categories}}">
|
30
|
+
<a href="{{ post.url }}">
|
31
|
+
<img src="{{ post.image }}" class="card-img-top p-3" style="border-radius: 25px; height: 180px;"
|
32
|
+
alt="not found">
|
33
|
+
</a>
|
34
|
+
<div class="card-body">
|
35
|
+
<a href="{{ post.url }}" class="anchor_link">
|
36
|
+
<h1 class="card-title mb-4">{{ post.title }}</h1>
|
37
|
+
</a>
|
38
|
+
</div>
|
39
|
+
{% assign author = site.data.blog.authors[post.author] %}
|
40
|
+
<div class="card-footer">
|
41
|
+
<div class="wrapfooter">
|
42
|
+
<span class="meta-footer-thumb">
|
43
|
+
<img class="author-thumb" src="{{ author.image }}" alt="{{ author.name }}">
|
44
|
+
</span>
|
45
|
+
<span class="author-meta">
|
46
|
+
<span class="post-name">
|
47
|
+
<a target="_blank" href="/">{{post.author}}</a>
|
48
|
+
</span><br>
|
49
|
+
<span class="post-date">{{post.date | date_to_string }}</span>
|
50
|
+
</span>
|
51
|
+
<span class="post-read-more">
|
52
|
+
<a href="{{ post.url }}" title="Read Story">
|
53
|
+
Read More
|
54
|
+
</a></span>
|
55
|
+
</div>
|
56
|
+
</div>
|
57
|
+
</div>
|
58
|
+
</div>
|
59
|
+
{% endfor %}
|
60
|
+
</div>
|
61
|
+
{%- include pagination.html -%}
|
62
|
+
</div>
|
63
|
+
|
64
|
+
{% include section/count.html %}
|
65
|
+
</section>
|
66
|
+
|
67
|
+
{%- include section/recent_posts.html -%}
|
68
|
+
<!-- {% include section/faq.html %} -->
|
69
|
+
|
70
|
+
{% include footer/index.html %}
|
71
|
+
|
72
|
+
{% include scripts.html %}
|
73
|
+
</body>
|
74
|
+
|
75
|
+
</html>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
---
|
2
|
+
layout: blog
|
3
|
+
---
|
4
|
+
|
5
|
+
<div class="container">
|
6
|
+
<div class="row listrecent">
|
7
|
+
{% for category in site.categories %}
|
8
|
+
<div class="section-title col-md-12 mt-4">
|
9
|
+
<h2 id="{{ category[0] | replace: ' ', '-' }}">Category <span class="text-capitalize">{{ category[0]
|
10
|
+
}}</span>
|
11
|
+
</h2>
|
12
|
+
</div>
|
13
|
+
{% assign pages_list = category[1] %}
|
14
|
+
{% for post in pages_list %}
|
15
|
+
{% if post.title != null %}
|
16
|
+
{% if group == null or group == post.group %}
|
17
|
+
{% include postbox.html %}
|
18
|
+
{% endif %}
|
19
|
+
{% endif %}
|
20
|
+
{% endfor %}
|
21
|
+
{% assign pages_list = nil %}
|
22
|
+
{% assign group = nil %}
|
23
|
+
{% endfor %}
|
24
|
+
</div>
|
25
|
+
</div>
|
data/_layouts/post.html
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
<Doctype html>
|
2
|
+
<html lang="en">
|
3
|
+
{% include custom-head.html %}
|
4
|
+
<style>
|
5
|
+
.post-content img {
|
6
|
+
width: auto;
|
7
|
+
max-width: 100%;
|
8
|
+
}
|
9
|
+
@media(max-width:768px){
|
10
|
+
.main_h1{
|
11
|
+
font-size: 1rem !important;
|
12
|
+
}
|
13
|
+
}
|
14
|
+
</style>
|
15
|
+
|
16
|
+
<body>
|
17
|
+
{%- include header/index.html -%}
|
18
|
+
<section class="section_post">
|
19
|
+
<div class="container px-5">
|
20
|
+
<div class="row section-title-wrap">
|
21
|
+
<div class="col-md-12 mt-5">
|
22
|
+
<h1 class="main_h1" style="font-weight: 900;">{{ page.title }}</h1>
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
<div class="row mt-5">
|
26
|
+
<div class="col-md-2">
|
27
|
+
<div class="socialIons">
|
28
|
+
<ul class="list-unstyled item-lists2">
|
29
|
+
<li><a style="pointer-events: none;">{{ site.data.blog.share.label }}</a></li>
|
30
|
+
{% capture title %}{{ page.title }}{% endcapture %}
|
31
|
+
{% assign url = page.url | relative_url | prepend: site.url %}
|
32
|
+
{% for share in site.data.blog.share.platforms %}
|
33
|
+
{% assign link = share.link | replace: 'TITLE', title | replace: 'URL', url %}
|
34
|
+
<li> <a href=" {{ link }}" data-toggle="tooltip"
|
35
|
+
onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
|
36
|
+
data-placement="top" title="{{ share.type }}" aria-label="{{ share.type }}">
|
37
|
+
<i class="fa-fw {{ share.icon }}"></i>
|
38
|
+
</a>
|
39
|
+
</li>
|
40
|
+
{% endfor %}
|
41
|
+
</span>
|
42
|
+
</ul>
|
43
|
+
<div class="sep"></div>
|
44
|
+
<div class="comments-count">
|
45
|
+
<a href="{{ content.absolute_url }}#disqus_thread" class="comment_count"></a>
|
46
|
+
</div>
|
47
|
+
</ul>
|
48
|
+
</div>
|
49
|
+
</div>
|
50
|
+
|
51
|
+
<div class="col-md-8">
|
52
|
+
{% assign author = site.data.blog.authors[page.author] %}
|
53
|
+
|
54
|
+
{% if author %}
|
55
|
+
{% include author_bio.html %}
|
56
|
+
{% endif %}
|
57
|
+
|
58
|
+
<div class="post-content fetch-posts-content mt-5">
|
59
|
+
{{ content }}
|
60
|
+
</div>
|
61
|
+
|
62
|
+
{%- include paginationPostPage.html -%}
|
63
|
+
{%- include section/related_post.html -%}
|
64
|
+
<div class="commentsection">
|
65
|
+
{%- if site.disqus.shortname -%}
|
66
|
+
{%- include disqus_comments.html -%}
|
67
|
+
{%- endif -%}
|
68
|
+
</div>
|
69
|
+
</div>
|
70
|
+
</div>
|
71
|
+
</section>
|
72
|
+
{%- include section/count.html -%}
|
73
|
+
|
74
|
+
{%- include footer/index.html -%}
|
75
|
+
{% include scripts.html %}
|
76
|
+
</body>
|
77
|
+
|
78
|
+
</html>
|
data/_sass/_main.scss
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
// @import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');
|
2
|
+
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');
|
3
|
+
@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
|
4
|
+
|
5
|
+
// ------------------------------------------------------------------
|
6
|
+
// [Color codes]
|
7
|
+
|
8
|
+
$primary-color: #5fb9fd;
|
9
|
+
$primary-color2: #5960ff;
|
10
|
+
$title-color: #222222;
|
11
|
+
$text-color: #777777;
|
12
|
+
$aquablue-color: #edf6ff;
|
13
|
+
|
14
|
+
$white: #fff;
|
15
|
+
$offwhite: #e9e9e9;
|
16
|
+
$black: #222;
|
17
|
+
|
18
|
+
// -----------------------------------------------------------------------*/
|
19
|
+
|
20
|
+
@import 'theme/header';
|
21
|
+
@import 'theme/blog';
|
22
|
+
@import 'theme/faq';
|
23
|
+
@import 'theme/pagination';
|
24
|
+
@import 'theme/pagination2';
|
25
|
+
@import 'theme/footer';
|
@@ -0,0 +1,242 @@
|
|
1
|
+
|
2
|
+
.card:hover{
|
3
|
+
transform: translateY(-20px);
|
4
|
+
transition: all 0.15s ease;
|
5
|
+
}
|
6
|
+
.card-body {
|
7
|
+
.anchor_link {
|
8
|
+
font-weight: 300;
|
9
|
+
letter-spacing: 0.56px;
|
10
|
+
line-height: 20px;
|
11
|
+
text-decoration: none;
|
12
|
+
color: #000;
|
13
|
+
}
|
14
|
+
.card-title {
|
15
|
+
font-size: 14px;
|
16
|
+
}
|
17
|
+
.card-img-top {
|
18
|
+
width: 100%;
|
19
|
+
height: 100%;
|
20
|
+
-o-object-fit: cover;
|
21
|
+
object-fit: cover;
|
22
|
+
border-radius: 16px !important;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
26
|
+
@media(max-width:768px){
|
27
|
+
.card-img-top{
|
28
|
+
height:auto !important;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
.blog-post {
|
33
|
+
font-size: 20px;
|
34
|
+
color: rgb(37, 34, 34);
|
35
|
+
img {
|
36
|
+
width: 100%;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
.socialIons {
|
40
|
+
position: sticky;
|
41
|
+
top: 100px;
|
42
|
+
|
43
|
+
ul {
|
44
|
+
display: flex;
|
45
|
+
flex-direction: column;
|
46
|
+
width: 100%;
|
47
|
+
}
|
48
|
+
li {
|
49
|
+
list-style: none;
|
50
|
+
padding: 3px 0;
|
51
|
+
margin: 0 auto;
|
52
|
+
}
|
53
|
+
a {
|
54
|
+
color: rgba(0, 0, 0, 0.44) !important;
|
55
|
+
fill: rgba(0, 0, 0, 0.44) !important;
|
56
|
+
font-size: 18px;
|
57
|
+
cursor: pointer;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
.sep {
|
62
|
+
height: 1px;
|
63
|
+
width: 20px;
|
64
|
+
background: #999;
|
65
|
+
margin: 3px auto;
|
66
|
+
}
|
67
|
+
|
68
|
+
@media (max-width: 768px) {
|
69
|
+
.socialIons ul {
|
70
|
+
flex-direction: row;
|
71
|
+
align-items: center;
|
72
|
+
|
73
|
+
li {
|
74
|
+
margin: 0;
|
75
|
+
padding-right: 50px;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
.sep {
|
80
|
+
margin: 0;
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
/* author bio styling.. */
|
85
|
+
.wrapfooter {
|
86
|
+
width: 100%;
|
87
|
+
display: flex;
|
88
|
+
align-items: center;
|
89
|
+
|
90
|
+
.author-thumb {
|
91
|
+
width: 40px;
|
92
|
+
height: 40px;
|
93
|
+
border-radius: 50%;
|
94
|
+
object-fit: cover;
|
95
|
+
}
|
96
|
+
|
97
|
+
.author-meta {
|
98
|
+
padding-left: 43px;
|
99
|
+
}
|
100
|
+
.postName {
|
101
|
+
font-size: 18px;
|
102
|
+
color: rgba(0, 0, 0, 0.8) !important;
|
103
|
+
text-decoration: none !important;
|
104
|
+
font-family: 'Merriweather', serif;
|
105
|
+
}
|
106
|
+
.btn_follow {
|
107
|
+
margin-left: 5px;
|
108
|
+
margin-bottom: 10px;
|
109
|
+
border-color: #02b875;
|
110
|
+
color: #1c9963 !important;
|
111
|
+
padding: 3px 10px;
|
112
|
+
text-align: center;
|
113
|
+
border-radius: 999em;
|
114
|
+
font-size: 1rem;
|
115
|
+
display: inline-block;
|
116
|
+
border: 1px solid;
|
117
|
+
}
|
118
|
+
.author_bio {
|
119
|
+
font-family: 'Merriweather', serif;
|
120
|
+
color: rgba(0, 0, 0, 0.44);
|
121
|
+
font-size: 16px;
|
122
|
+
line-height: 20px;
|
123
|
+
}
|
124
|
+
.post-read-more a {
|
125
|
+
text-decoration: none !important;
|
126
|
+
font-size: 0.8rem;
|
127
|
+
color: gray;
|
128
|
+
|
129
|
+
&:hover {
|
130
|
+
color: blue !important;
|
131
|
+
text-decoration: underline !important;
|
132
|
+
}
|
133
|
+
}
|
134
|
+
} /* close */
|
135
|
+
|
136
|
+
.card-footer {
|
137
|
+
border: none !important;
|
138
|
+
|
139
|
+
.wrapfooter2 {
|
140
|
+
display: flex;
|
141
|
+
align-items: center;
|
142
|
+
}
|
143
|
+
img {
|
144
|
+
width: 30px;
|
145
|
+
height: 30px;
|
146
|
+
border-radius: 50%;
|
147
|
+
}
|
148
|
+
.author-meta {
|
149
|
+
flex: 1 1 auto;
|
150
|
+
padding: 0 15px;
|
151
|
+
}
|
152
|
+
.post-date {
|
153
|
+
display: block;
|
154
|
+
position: relative;
|
155
|
+
font-size: 12px;
|
156
|
+
}
|
157
|
+
.author-meta a {
|
158
|
+
font-size: 12px;
|
159
|
+
color: #000;
|
160
|
+
text-transform: capitalize;
|
161
|
+
text-decoration: none;
|
162
|
+
}
|
163
|
+
.span.post-read-more {
|
164
|
+
align-items: center;
|
165
|
+
display: inline-block;
|
166
|
+
margin-top: 8px;
|
167
|
+
}
|
168
|
+
}
|
169
|
+
|
170
|
+
.explore {
|
171
|
+
margin: 100px 0;
|
172
|
+
height: 300px;
|
173
|
+
background: #00ab6b;
|
174
|
+
width: 100%;
|
175
|
+
text-align: center;
|
176
|
+
display: grid;
|
177
|
+
place-items: center;
|
178
|
+
/* min-height: 100vh; */
|
179
|
+
color: #fff;
|
180
|
+
font-weight: 400;
|
181
|
+
.cat {
|
182
|
+
display: inline-block;
|
183
|
+
padding: 7px 10px;
|
184
|
+
text-decoration: none !important;
|
185
|
+
color: #000 !important;
|
186
|
+
font-weight: 600;
|
187
|
+
font-size: 12px;
|
188
|
+
background: #fff;
|
189
|
+
border-radius: 15px;
|
190
|
+
margin: 0 15px;
|
191
|
+
}
|
192
|
+
}
|
193
|
+
|
194
|
+
// catgories styling
|
195
|
+
.section-title h2 {
|
196
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
197
|
+
font-size: 1.5rem;
|
198
|
+
margin-bottom: 27px;
|
199
|
+
span {
|
200
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.44);
|
201
|
+
display: inline-block;
|
202
|
+
padding-bottom: 20px;
|
203
|
+
margin-bottom: -1px;
|
204
|
+
}
|
205
|
+
}
|
206
|
+
|
207
|
+
|
208
|
+
/* Blog-Pages-Pagination stlying*/
|
209
|
+
.blog-pagination a,
|
210
|
+
.blog-pagination span {
|
211
|
+
padding: 7px 10px;
|
212
|
+
margin-left: -2px;
|
213
|
+
margin-right: -2px;
|
214
|
+
background-color: #ffffff;
|
215
|
+
display: inline-block;
|
216
|
+
text-decoration: none;
|
217
|
+
}
|
218
|
+
.blog-pagination{
|
219
|
+
text-align: center;
|
220
|
+
a:hover {
|
221
|
+
background-color: #f1f1f1;
|
222
|
+
color: #333;
|
223
|
+
}
|
224
|
+
}
|
225
|
+
|
226
|
+
|
227
|
+
/* recent post heading stlye */
|
228
|
+
.related_post_heading{
|
229
|
+
text-align: center !important;
|
230
|
+
width:100%;
|
231
|
+
font-size: 40px;
|
232
|
+
text-align: left;
|
233
|
+
font-weight: 800;
|
234
|
+
font-stretch: normal;
|
235
|
+
font-style: normal;
|
236
|
+
line-height: 1.24;
|
237
|
+
letter-spacing: normal;
|
238
|
+
color: rgb(17, 48, 78);
|
239
|
+
margin-bottom: 45px;
|
240
|
+
padding-top: 75px;
|
241
|
+
display: inline-block;
|
242
|
+
}
|