appscms-tools-theme 0.1.5 → 0.2.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a903e250553a7330082187c127d54e5bb4d6064f22b81b12765a4b16a064ef9a
4
- data.tar.gz: 77fa1303d627dacfcf76954b080aecf8978c463f85df246f763471b8098cf722
3
+ metadata.gz: 39e9cd41376d675c918575a4f5f8cacae4e3a95e412dcc844f20c1f6cc2fafc7
4
+ data.tar.gz: 59f5ca42af077ee83f58890c86b98aa9f641037edddf5b9c338073d09a9b37f7
5
5
  SHA512:
6
- metadata.gz: 2fb551f458073a1f7efc8c9807ff734a20d0af6943e09268cf9b15459f209b837f377b37cd57a98af53db833c558e7f98d472a91905755081d44306fcdd90824
7
- data.tar.gz: ae7edd7d3ff2e43641cb69a3639b798e1e14e2beaa6fc6047a7387ec3d4a4411b5c6620074223804d995d83eb40f692a734c920a2edf6385099bb0fe62459883
6
+ metadata.gz: 3ed4f23e0fd571a6aa87c9694e58f3cadc13aa681923b5ec5e0fe18094621ebe17894b7187f257d14e8f5020c1c53c1d2059d07688b053701189a2bc2095db12
7
+ data.tar.gz: 39fd45f1769be3afa192b811e1731bea198060dfff99eeec319a18f60ff10762dcefd46648a63e6ca07ed4a9c5d845f133b515292b9b5bcb6feee7cf47126296
@@ -0,0 +1,34 @@
1
+ <head>
2
+ {%- assign seo_description = page.description | default: page.excerpt | default: site.description -%}
3
+ {%- if seo_description -%}
4
+ {%- assign seo_description = seo_description | markdownify | strip_html | strip_newlines | escape_once -%}
5
+ {%- endif -%}
6
+ {%- if page.date -%}
7
+ {%- assign og_type = "article" -%}
8
+ {%- else -%}
9
+ {%- assign og_type = "website" -%}
10
+ {%- endif -%}
11
+
12
+ <meta charset="UTF-8">
13
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
14
+ <meta name="keywords" content="{{site.keyboard}}">
15
+ <meta name="description" content="{{ seo_description}}">
16
+ <meta name="og:description" content="{{ seo_description}}">
17
+ <meta property="og:title" content="{{ page.title | default: site.title }}">
18
+ <meta property="og:type" content="{{og_type}}">
19
+ <meta property="og:locale" content="en_US">
20
+ <meta property="og:site_name" content="{{site.name}}">
21
+ <meta property="og:url" content="{{site.url | append: page.url}}">
22
+ <meta name="author" content="{{ site.author_name }}">
23
+
24
+ <title>{{page.title}}</title>
25
+
26
+ <!-- fonts -->
27
+ <link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
28
+ <link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
29
+
30
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
31
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css">
32
+
33
+ <link rel="stylesheet" href="{{ '/assets/css/blog.css' | relative_url }}">
34
+ </head>
@@ -1,6 +1,4 @@
1
1
  <head>
2
-
3
- <link rel="stylesheet" href="{{ 'css/main.css' | relative_url }}">
4
2
  <meta charset="utf-8">
5
3
  <link rel="shortcut icon" href="/favicon.png">
6
4
 
@@ -44,7 +42,5 @@
44
42
  <link rel="preload" href="/build/ca6a911b9040a84259b8c6f7f4cbb72e.svg" as=image>
45
43
  <link rel="preload" href="/build/95cf74e5f89f93cfd5f97d16fa673f05.svg" as=image>
46
44
  <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700" rel="stylesheet">
47
-
48
-
49
-
45
+ <link rel="stylesheet" href="/assets/css/tools.css">
50
46
  </head>
@@ -0,0 +1,34 @@
1
+ <!-- header starts -->
2
+ <header id="header">
3
+ <!-- navigation startss -->
4
+ <nav class="navbar navbar-expand-lg navbar-dark bg-light">
5
+
6
+ {% if site.data.nav.navbar-brand-text %}
7
+ <a class="navbar-brand" href="/" title="{{site.data.nav.navbar-brand-text}}">
8
+ {{site.data.nav.navbar-brand-text}}
9
+ </a>
10
+
11
+ {% else %}
12
+
13
+ <a class="navbar-brand" href="/" title="{{site.data.nav.navbar-brand-text}}">
14
+ <img src="{{site.data.nav.navbar-brand-logo}}" class="logo" alt="logo-image">
15
+ </a>
16
+
17
+ {% endif %}
18
+
19
+
20
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
21
+ <i class="fas fa-bars fa-2x" style="color:#000"></i>
22
+ </button>
23
+
24
+ <div class="collapse navbar-collapse" id="navbarSupportedContent">
25
+ <ul class="navbar-nav ml-auto">
26
+ <li class="nav-item">
27
+ <a class="nav-link" href="/blog">{{site.data.nav.item}}</a>
28
+ </li>
29
+ </ul>
30
+ </div>
31
+ </nav>
32
+ <!-- navbar close -->
33
+ </header>
34
+ <!-- header close -->
@@ -1,16 +1,35 @@
1
- <div class="post-links">
2
- <div class="bottompagination">
3
- <div class="pointerup"><i class="fa fa-caret-up"></i></div>
4
- <span class="navigation" role="navigation">
5
- <div class="pagination">
6
- {% if page.previous.url %}
7
- <a class="ml-1 mr-1 pageUrl" href="{{page.previous.url}}">« Prev</a>
8
- {% endif %}
9
- {% if page.next.url %}
10
- <a class="ml-1 mr-1 pageUrl" href="{{page.next.url}}"> Next »</a>
1
+ <!-- pagination -->
2
+ <div class="bottompagination">
3
+ <div class="pointerup"><i class="fa fa-caret-up"></i></div>
4
+ <span class="navigation" role="navigation"></span>
5
+ </div>
6
+ {% if paginator.total_pages > 1 %}
7
+ <div class="blog-pagination">
8
+ {% if paginator.previous_page %}
9
+ <a style="color: #00ab6b; font-weight: 900;"
10
+ href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">&laquo; Prev</a>
11
+ {% else %}
12
+ <span class="text-muted">&laquo; Prev</span>
13
+ {% endif %}
11
14
 
12
- {% endif %}
13
- </div>
14
- </span>
15
- </div>
16
- </div>
15
+ {% for page in (1..paginator.total_pages) %}
16
+ {% if page == paginator.page %}
17
+ <span class="webjeda text-muted">{{ page }}</span>
18
+ {% elsif page == 1 %}
19
+ <a href="/blog" style="color: #00ab6b; font-weight: 900;">{{ page }}</a>
20
+ {% else %}
21
+ <a style="color: #00ab6b; font-weight: 900;"
22
+ href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page
23
+ }}</a>
24
+ {% endif %}
25
+ {% endfor %}
26
+
27
+ {% if paginator.next_page %}
28
+ <a style="color:#00ab6b; font-weight: 900;"
29
+ href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next
30
+ &raquo;</a>
31
+ {% else %}
32
+ <span class="text-muted">Next &raquo;</span>
33
+ {% endif %}
34
+ </div>
35
+ {% endif %}
@@ -1,31 +1,15 @@
1
- <!-- pagination -->
2
- {% if paginator.total_pages > 1 %}
3
- <div class="pagination2">
4
- {% if paginator.previous_page %}
5
- <a style="color: green; font-weight: 900;"
6
- href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">&laquo; Prev</a>
7
- {% else %}
8
- <span class="text-muted">&laquo; Prev</span>
9
- {% endif %}
10
-
11
- {% for page in (1..paginator.total_pages) %}
12
- {% if page == paginator.page %}
13
- <span class="webjeda text-muted">{{ page }}</span>
14
- {% elsif page == 1 %}
15
- <a href="/blog" style="color: green; font-weight: 900;">{{ page }}</a>
16
- {% else %}
17
- <a style="color: green; font-weight: 900;"
18
- href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page
19
- }}</a>
20
- {% endif %}
21
- {% endfor %}
22
-
23
- {% if paginator.next_page %}
24
- <a style="color:green; font-weight: 900;"
25
- href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next
26
- &raquo;</a>
27
- {% else %}
28
- <span class="text-muted">Next &raquo;</span>
29
- {% endif %}
30
- </div>
31
- {% endif %}
1
+ <div class="post-links">
2
+ <div class="bottompagination">
3
+ <div class="pointerup"><i class="fa fa-caret-up"></i></div>
4
+ <span class="navigation" role="navigation">
5
+ <div class="pagination">
6
+ {% if page.previous.url %}
7
+ <a class="ml-1 mr-1 pageUrl" href="{{page.previous.url}}">« Prev</a>
8
+ {% endif %}
9
+ {% if page.next.url %}
10
+ <a class="ml-1 mr-1 pageUrl" href="{{page.next.url}}"> Next »</a>
11
+ {% endif %}
12
+ </div>
13
+ </span>
14
+ </div>
15
+ </div>
@@ -12,7 +12,7 @@
12
12
  <div class="card-footer bg-white">
13
13
  <div class="wrapfooter">
14
14
  <span class="meta-footer-thumb">
15
- <img class="author-thumb" src="/assets/images/example.png" alt="{{ post.author.name }}">
15
+ <img class="author-thumb" src="{{post.url}}" alt="{{ post.author.name }}">
16
16
  </span>
17
17
  <span class="author-meta">
18
18
  <span class="post-name">
@@ -1,7 +1,6 @@
1
1
  <div class="alertbar" style="display: none;">
2
2
  <div class="container text-center">
3
- <span style="font-size: 15px;">Mathbig.com &nbsp; Never miss a
4
- <b>story</b> from us, subscribe to our newsletter</span>
3
+ <span style="font-size: 15px;">{{site.data.alertbar.span}}</span>
5
4
  <form>
6
5
  <div class="mc-field-group">
7
6
  <input type="email" placeholder="Email" name="EMAIL" class="required email" id="mce-EMAIL"
data/_layouts/blog.html CHANGED
@@ -1,47 +1,21 @@
1
1
  <html>
2
2
 
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
6
- <meta name="keywords" content="Mathbig - Blogposts">
7
- <meta name="description" content="{{site.description}}">
8
- <meta property="og:title" content="{{ page.title | default: site.title }}">
9
- <meta property="og:type" content="website">
10
- <meta property="og:locale" content="en_US">
11
- <meta property="og:site_name" content="{{site.name}}">
12
- <meta property="og:url" content="{{site.url | append: page.url}}">
13
- <meta name="author" content="Harshit Raghav">
14
-
15
- <link rel="stylesheet" href="{{ '/css/main.css' | relative_url }}">
16
- <link rel="stylesheet" href="{{ 'css/blog.css' | relative_url }}">
17
-
18
- <title>{{page.title}}</title>
19
-
20
- <!-- fonts -->
21
- <link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
22
- <link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
23
-
24
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
25
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet">
26
-
27
- <link rel="stylesheet" href="/css/main.css">
28
- </head>
3
+ {% include custom-head.html %}
29
4
 
30
5
  <body>
31
- {%- include header/index.html -%}
6
+ {%- include header.html -%}
32
7
 
33
8
  <section class="section_post">
34
9
  <div class="container">
35
10
  <div class="row justify-content-center section-title-wrap">
36
- <div class="col-lg-12 mt-5">
37
- <h1 style="font-weight: 900;">{{ site.data.blog.title }}</h1>
11
+ <div class="col-lg-12">
12
+ <h1 style="font-weight: 900;" class="display-4 mb-5">{{ site.data.blog.h1 }}</h1>
38
13
  </div>
39
14
  </div>
40
15
 
41
- <!-- category posts -->
42
-
16
+ <!-- categories post -->
43
17
  <div class="main-content">
44
- {{ content }}
18
+ {{content}}
45
19
  </div>
46
20
  <!-- close -->
47
21
 
@@ -60,12 +34,11 @@
60
34
  <div class="card-footer bg-white">
61
35
  <div class="wrapfooter">
62
36
  <span class="meta-footer-thumb">
63
- <img class="author-thumb" src="/assets/images/example.png"
64
- alt="{{ post.author.name }}">
37
+ <img class="author-thumb" src="{{ author.image }}" alt="{{ post.author.name }}">
65
38
  </span>
66
39
  <span class="author-meta">
67
40
  <span class="post-name">
68
- <a target="_blank" href="{{ post.author.url }}">{{post.author}}</a>
41
+ <a target="_blank" href="{{ post.url }}">{{post.author}}</a>
69
42
  </span><br>
70
43
  <span class="post-date">{{post.date | date_to_string }}</span>
71
44
  </span>
@@ -81,13 +54,12 @@
81
54
  </div>
82
55
  {% endfor %}
83
56
  </div>
57
+ {%- include pagination.html -%}
84
58
  </div>
85
59
 
86
- {%- include pagination2.html -%}
87
60
  {% include section/count.html %}
88
61
  </section>
89
62
  {%- include section/alertbar.html -%}
90
-
91
63
  <script src="/js/TopScroll.js"></script>
92
64
  </body>
93
65
 
@@ -752,5 +752,6 @@
752
752
 
753
753
  <!-- Footer End -->
754
754
  </body>
755
+ <link rel="stylesheet" href="{{ 'css/feature.css' | relative_url }}">
755
756
 
756
757
  </html>
data/_layouts/post.html CHANGED
@@ -1,43 +1,9 @@
1
- ---
2
- layout: post
3
- ---
4
-
5
1
  <html>
6
2
 
7
- <head>
8
- {%- assign seo_description = page.description | default: page.excerpt | default: site.description -%}
9
- {%- if seo_description -%}
10
- {%- assign seo_description = seo_description | markdownify | strip_html | strip_newlines | escape_once -%}
11
- {%- endif -%}
12
-
13
- <meta charset="UTF-8">
14
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
15
- <meta name="keywords" content="BlogPost">
16
- <meta name="description" content="{{ seo_description }}">
17
- <meta name="og:description" content="{{ seo_description }} ">
18
- <meta property="og:title" content="{{ page.title | default: site.title }}">
19
- <meta property="og:type" content="article">
20
- <meta property="og:locale" content="en_US">
21
- <meta property="og:site_name" content="{{site.name}}">
22
- <meta property="og:url" content="{{site.url | append: page.url}}">
23
- <meta name="author" content="Harshit Raghav">
24
-
25
- <title>{{page.title}}</title>
26
-
27
- <!-- fonts -->
28
- <link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
29
- <link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
30
-
31
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
32
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet">
33
- <link rel="stylesheet" href="{{ '/css/main.css' | relative_url }}">
34
- <link rel="stylesheet" href="{{ 'css/blog.css' | relative_url }}">
35
- <link rel="stylesheet" href="{{ 'css/post.css' | relative_url }}">
36
-
37
- </head>
3
+ {% include custom-head.html %}
38
4
 
39
5
  <body>
40
- {%- include header/index.html -%}
6
+ {%- include header.html -%}
41
7
 
42
8
  <section class="section_post">
43
9
  <div class="container">
@@ -79,8 +45,10 @@ layout: post
79
45
  {% include author_bio.html %}
80
46
  {% endif %}
81
47
 
82
- {{ content }}
83
- {%- include pagination.html -%}
48
+ <div class="post-content">
49
+ {{ content }}
50
+ </div>
51
+ {%- include pagination2.html -%}
84
52
 
85
53
  </div>
86
54
  </div>
@@ -89,7 +57,6 @@ layout: post
89
57
  {%- include section/alertbar.html -%}
90
58
  </body>
91
59
 
92
- <link rel="stylesheet" href="{{ '/css/main.css' | relative_url }}">
93
60
  <script src="/js/TopScroll.js"></script>
94
61
 
95
62
  </html>
@@ -0,0 +1,423 @@
1
+ /**********************************************/
2
+ /***************BLOG-CSS-STYLING *************/
3
+ /********************************************/
4
+
5
+ html {
6
+ scroll-behavior: smooth;
7
+ font-size: 62.5%;
8
+ }
9
+ body {
10
+ font-family: 'Open Sans', sans-serif !important;
11
+ }
12
+ a {
13
+ text-decoration: none !important;
14
+ }
15
+
16
+ .section_post {
17
+ margin-top: 100px;
18
+ }
19
+
20
+ /* logo styling */
21
+ .logo {
22
+ width: 50px;
23
+ border-radius: 50%;
24
+ }
25
+
26
+ /* HEADER STYLING */
27
+ header {
28
+ width: 100%;
29
+ position: relative;
30
+ background: url(../assets/images/bg_elements.png);
31
+ }
32
+ .navbar {
33
+ width: 100%;
34
+ padding: 1.2rem 10rem !important;
35
+ position: fixed;
36
+ top: 0;
37
+ left: 0;
38
+ z-index: 999;
39
+ }
40
+ .navbar-brand {
41
+ font-size: 2.2rem;
42
+ color: var(--txtColor) !important;
43
+ font-weight: 900;
44
+ }
45
+ .navbar-dark .navbar-toggler {
46
+ outline: none !important;
47
+ }
48
+ .navbar-nav .nav-item {
49
+ padding: 0 10px;
50
+ }
51
+ .navbar-nav .nav-link:hover {
52
+ color: var(--txtColor) !important;
53
+ transition: all 0.2s linear;
54
+ -webkit-transition: all 0.2s linear;
55
+ -moz-transition: all 0.2s linear;
56
+ }
57
+ .nav-link {
58
+ text-decoration: none !important;
59
+ font-size: 16px;
60
+ color: gray !important;
61
+ }
62
+ .dropdown:hover .dropdown-menu {
63
+ display: block;
64
+ border: none;
65
+ font-size: 14px;
66
+ left: -160px;
67
+ padding: 13.5px;
68
+ background: transparent;
69
+ }
70
+ .dropdown-item {
71
+ text-align: right;
72
+ }
73
+
74
+ /* blogs-card title, content styling */
75
+ .anchor_link {
76
+ text-decoration: none !important;
77
+ color: #343a40 !important;
78
+ }
79
+ .anchor_link:hover {
80
+ transition: all 0.5s linear;
81
+ color: #000 !important;
82
+ }
83
+ .anchor_link .card-title {
84
+ font-weight: 600;
85
+ font-size: 22px;
86
+ line-height: 1.3;
87
+ }
88
+ .text_size {
89
+ color: rgba(0, 0, 0, 0.44);
90
+ font-size: 15px;
91
+ line-height: 1.6;
92
+ font-weight: 400;
93
+ }
94
+ /* close */
95
+
96
+ /* Blog-card-footer styling */
97
+ .card-footer {
98
+ border: none;
99
+ }
100
+ .wrapfooter {
101
+ display: flex;
102
+ align-items: center;
103
+ margin-bottom: 15px;
104
+ }
105
+ .wrapfooter img {
106
+ width: 35px;
107
+ height: 35px;
108
+ border-radius: 50%;
109
+ }
110
+ .wrapfooter .author-meta {
111
+ flex: 1 1 auto;
112
+ padding: 0 15px;
113
+ }
114
+ .wrapfooter .author-meta a {
115
+ font-size: 15px;
116
+ color: #000;
117
+ text-transform: capitalize;
118
+ }
119
+ .wrapfooter .span.post-read-more {
120
+ align-items: center;
121
+ display: inline-block;
122
+ margin-top: 8px;
123
+ }
124
+ .post-date {
125
+ color: rgba(0, 0, 0, 0.44);
126
+ font-size: 13px;
127
+ }
128
+ /* close */
129
+
130
+ /* BLOG-Categories stlying */
131
+ .explore {
132
+ color: #fff;
133
+ margin-bottom: 100px;
134
+ margin-top: 60px;
135
+ width: 100%;
136
+ background: repeating-linear-gradient(
137
+ 45deg,
138
+ rgb(27, 27, 27) 0px,
139
+ rgb(27, 27, 27) 97px,
140
+ rgb(24, 24, 24) 97px,
141
+ rgb(24, 24, 24) 194px,
142
+ rgb(20, 20, 20) 194px,
143
+ rgb(20, 20, 20) 291px
144
+ );
145
+ height: 250px;
146
+ align-items: center;
147
+ display: flex;
148
+ justify-content: space-around;
149
+ }
150
+ .explore ul {
151
+ display: flex;
152
+ list-style: none;
153
+ }
154
+ .cat {
155
+ display: inline-block;
156
+ padding: 5px 10px;
157
+ text-decoration: none !important;
158
+ color: #000 !important;
159
+ font-weight: 600;
160
+ font-size: 12px;
161
+ background: #fff;
162
+ border-radius: 15px;
163
+ margin: 0 15px;
164
+ }
165
+ /* close */
166
+
167
+ /* BLOG-alertbar stlying */
168
+ .alertbar {
169
+ box-shadow: 0 -3px 10px 0 rgb(0 0 0 / 8%);
170
+ position: fixed;
171
+ bottom: 0;
172
+ left: 0;
173
+ background-color: #fff;
174
+ width: 100%;
175
+ padding: 14px 0;
176
+ z-index: 1;
177
+ }
178
+ .alertbar form {
179
+ display: inline-block;
180
+ }
181
+ .alertbar input[type='email'] {
182
+ font-size: 0.85rem;
183
+ padding: 3px 40px 3px 10px;
184
+ border-top-left-radius: 3px;
185
+ border-bottom-left-radius: 3px;
186
+ border: 1px solid #ddd;
187
+ border-right: 0;
188
+ margin-right: -10px;
189
+ height: 34px;
190
+ letter-spacing: 0.5px;
191
+ margin-left: 5px;
192
+ outline: 0;
193
+ }
194
+ .alertbar input[type='submit'] {
195
+ background-color: #1c9963;
196
+ border: 1px solid #1c9963;
197
+ color: #fff;
198
+ fill: #fff;
199
+ font-size: 12px;
200
+ border-radius: 0;
201
+ padding: 4px 10px;
202
+ border-top-right-radius: 3px;
203
+ border-bottom-right-radius: 3px;
204
+ font-weight: 600;
205
+ height: 34px;
206
+ letter-spacing: 0.5px;
207
+ cursor: pointer;
208
+ }
209
+ /* close */
210
+
211
+ /* Blog-Pages-Pagination stlying*/
212
+ .blog-pagination a,
213
+ .blog-pagination span {
214
+ padding: 7px 10px;
215
+ margin-left: -2px;
216
+ margin-right: -2px;
217
+ background-color: #ffffff;
218
+ display: inline-block;
219
+ text-decoration: none;
220
+ }
221
+
222
+ .blog-pagination a:hover {
223
+ background-color: #f1f1f1;
224
+ color: #333;
225
+ }
226
+
227
+ .blog-pagination {
228
+ text-align: center;
229
+ font-size: 14px;
230
+ }
231
+
232
+ /* BLOG-Categories-PAGes styling */
233
+ .section-title h2 {
234
+ border-bottom: 1px solid rgba(0, 0, 0, 0.125);
235
+ font-weight: 700;
236
+ font-size: 1.5rem;
237
+ margin-bottom: 27px;
238
+ }
239
+ .section-title span {
240
+ border-bottom: 1px solid rgba(0, 0, 0, 0.44);
241
+ display: inline-block;
242
+ padding-bottom: 20px;
243
+ margin-bottom: -1px;
244
+ }
245
+
246
+ /***************************************************************/
247
+ /********************** post-layouts-styling *******************/
248
+ /***************************************************************/
249
+
250
+ /* left-sidebar-social-styling */
251
+ .post-content {
252
+ font-size: 20px;
253
+ }
254
+
255
+ .socialIons {
256
+ position: sticky;
257
+ top: 100px;
258
+ }
259
+ .socialIons > .item-lists2 {
260
+ display: flex;
261
+ flex-direction: column;
262
+ width: 100%;
263
+ }
264
+ .socialIons > .item-lists2 > li {
265
+ list-style: none;
266
+ padding: 8px 0px;
267
+ margin: 0 auto;
268
+ }
269
+ .socialIons .item-lists2 li a {
270
+ color: rgba(95, 21, 21, 0.44);
271
+ fill: rgba(0, 0, 0, 0.44);
272
+ font-size: 15px;
273
+ cursor: pointer;
274
+ text-decoration: none !important;
275
+ }
276
+ .socialIons > .item-lists2 > li i {
277
+ font-size: 18px;
278
+ color: rgba(0, 0, 0, 0.44);
279
+ fill: rgba(0, 0, 0, 0.44);
280
+ }
281
+ .sep {
282
+ height: 1px;
283
+ width: 20px;
284
+ background: #999;
285
+ margin: 3px auto;
286
+ }
287
+ .comments-count {
288
+ margin: 18px 25px;
289
+ text-align: center;
290
+ }
291
+ .comment_count {
292
+ font-size: 12px;
293
+ color: rgba(95, 21, 21, 0.44) !important;
294
+ fill: rgba(0, 0, 0, 0.44);
295
+ text-decoration: none !important;
296
+ }
297
+ /* close */
298
+
299
+ /* right-sidebar-styling-starts */
300
+ /* author bio styling.. */
301
+ .author_image .author-thumb {
302
+ width: 60px;
303
+ height: 60px;
304
+ object-fit: cover;
305
+ }
306
+ .author-meta .postName {
307
+ font-size: 18px !important;
308
+ color: rgba(0, 0, 0, 0.8) !important;
309
+ text-decoration: none !important;
310
+ font-family: 'Merriweather', serif;
311
+ }
312
+ .btn_follow {
313
+ margin-left: 5px;
314
+ margin-bottom: 10px;
315
+ border-color: #02b875;
316
+ color: #1c9963 !important;
317
+ padding: 3px 10px;
318
+ text-align: center;
319
+ border-radius: 999em;
320
+ font-size: 1.5rem;
321
+ display: inline-block;
322
+ border: 1px solid;
323
+ }
324
+ .author_bio {
325
+ font-family: 'Merriweather', serif;
326
+ color: rgba(0, 0, 0, 0.44);
327
+ font-size: 13px;
328
+ line-height: 20px;
329
+ }
330
+ /* close */
331
+
332
+ /* pagination-styling-postpages */
333
+ .pointerup i.fa {
334
+ color: #eaeaea;
335
+ }
336
+ .pointerup {
337
+ margin-bottom: -9px;
338
+ margin-left: 49%;
339
+ font-size: 30px;
340
+ }
341
+ .bottompagination span.navigation {
342
+ display: block;
343
+ font-size: 0.93rem;
344
+ padding: 15px 0 0 0;
345
+ text-align: center;
346
+ margin-bottom: 0rem;
347
+ color: #999;
348
+ border-top: 1px solid #ddd;
349
+ }
350
+ .pagination {
351
+ display: -ms-flexbox;
352
+ display: flex;
353
+ padding-left: 0;
354
+ list-style: none;
355
+ border-radius: 0.25rem;
356
+ display: block;
357
+ color: green;
358
+ font-size: 15px;
359
+ margin-bottom: 30px;
360
+ }
361
+ .pageUrl {
362
+ color: green;
363
+ font-size: 12px;
364
+ font-weight: 900;
365
+ text-decoration: none;
366
+ margin-right: 10px;
367
+ }
368
+ .pageUrl:hover {
369
+ text-decoration: none;
370
+ color: green;
371
+ }
372
+
373
+ @media (max-width: 768px) {
374
+ .socialIons > .item-lists2 {
375
+ flex-direction: row;
376
+ align-items: center;
377
+ }
378
+ .socialIons > .item-lists2 > li {
379
+ padding-right: 30px;
380
+ margin: 0;
381
+ }
382
+ .sep {
383
+ margin: 0;
384
+ }
385
+ .author-meta {
386
+ padding-left: 15px;
387
+ }
388
+ .comments-count {
389
+ margin: 18px 0;
390
+ text-align: left;
391
+ }
392
+
393
+ .navbar {
394
+ padding: 1.2rem 15px !important;
395
+ }
396
+ .title,
397
+ .description {
398
+ width: 100% !important;
399
+ text-align: center;
400
+ }
401
+ .angle-arrow {
402
+ position: fixed;
403
+ bottom: 4px;
404
+ right: 32px;
405
+ top: auto;
406
+ z-index: 999;
407
+ }
408
+ .alertbar form {
409
+ display: block;
410
+ margin-top: 10px;
411
+ }
412
+ }
413
+ @media (max-width: 992px) {
414
+ .dropdown:hover .dropdown-menu {
415
+ left: 0px;
416
+ padding: 0;
417
+ }
418
+ .dropdown-item {
419
+ text-align: left;
420
+ font-weight: 600;
421
+ padding: 0.25rem 0;
422
+ }
423
+ }