appscms-tools-theme 0.1.9 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
Binary file
@@ -0,0 +1,9 @@
1
+ const alertbar = document.querySelector('.alertbar')
2
+ window.addEventListener('scroll', () => {
3
+ if (pageYOffset > 200) {
4
+ alertbar.style.display = 'block'
5
+ } else {
6
+ alertbar.style.display = 'none'
7
+ }
8
+ })
9
+ //
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appscms-tools-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-02 00:00:00.000000000 Z
11
+ date: 2021-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -61,28 +61,50 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - LICENSE.txt
63
63
  - README.md
64
+ - _data/alertbar.yml
65
+ - _data/authors.yml
66
+ - _data/blog.yml
67
+ - _data/feature/en/compress-pdf.json
68
+ - _data/feature/en/split-pdf.json
69
+ - _data/feature/hi/compress-pdf.json
70
+ - _data/home/en.json
71
+ - _data/home/hi.json
72
+ - _data/nav.json
73
+ - _data/pages/about.json
74
+ - _data/pages/contact.json
75
+ - _data/pages/help.json
76
+ - _data/pages/termAndCondition.json
77
+ - _data/share.yml
64
78
  - _includes/author_bio.html
79
+ - _includes/custom-head.html
80
+ - _includes/footer/index.html
65
81
  - _includes/head/index.html
82
+ - _includes/header.html
66
83
  - _includes/header/index.html
67
- - _includes/pagination.html
68
- - _includes/pagination2.html
84
+ - _includes/paginationBlogPage.html
85
+ - _includes/paginationPostPage.html
69
86
  - _includes/postbox.html
70
87
  - _includes/section/alertbar.html
71
88
  - _includes/section/count.html
89
+ - _layouts/aboutUs.html
72
90
  - _layouts/blog.html
73
91
  - _layouts/categories.html
92
+ - _layouts/contactUs.html
74
93
  - _layouts/default.html
75
94
  - _layouts/feature.html
95
+ - _layouts/help.html
76
96
  - _layouts/home.html
77
97
  - _layouts/page.html
78
98
  - _layouts/post.html
99
+ - _layouts/termAndCondition.html
79
100
  - assets/bulb.svg
80
101
  - assets/cloud.svg
81
102
  - assets/css/blog.css
82
- - assets/css/post.css
83
103
  - assets/css/tools.css
84
104
  - assets/easy.svg
85
105
  - assets/guaranty.svg
106
+ - assets/images/avatar.png
107
+ - assets/js/TopScroll.js
86
108
  - assets/pdf.svg
87
109
  - assets/protect.svg
88
110
  - assets/support.svg
data/assets/css/post.css DELETED
@@ -1,145 +0,0 @@
1
- body {
2
- font-size: 20px;
3
- }
4
-
5
- /* post-layouts styling */
6
-
7
- /* left-sidebar-social-styling */
8
- .socialIons {
9
- position: sticky;
10
- top: 100px;
11
- }
12
- .socialIons > .item-lists2 {
13
- display: flex;
14
- flex-direction: column;
15
- width: 100%;
16
- }
17
- .socialIons > .item-lists2 > li {
18
- list-style: none;
19
- padding: 8px 0px;
20
- margin: 0 auto;
21
- }
22
- .socialIons .item-lists2 li a {
23
- color: rgba(95, 21, 21, 0.44);
24
- fill: rgba(0, 0, 0, 0.44);
25
- font-size: 15px;
26
- cursor: pointer;
27
- text-decoration: none !important;
28
- }
29
- .socialIons > .item-lists2 > li i {
30
- font-size: 18px;
31
- color: rgba(0, 0, 0, 0.44);
32
- fill: rgba(0, 0, 0, 0.44);
33
- }
34
- .sep {
35
- height: 1px;
36
- width: 20px;
37
- background: #999;
38
- margin: 3px auto;
39
- }
40
- .comments-count {
41
- margin: 18px 25px;
42
- text-align: center;
43
- }
44
- .comment_count {
45
- font-size: 12px;
46
- color: rgba(95, 21, 21, 0.44) !important;
47
- fill: rgba(0, 0, 0, 0.44);
48
- text-decoration: none !important;
49
- }
50
- /* close */
51
-
52
- /* right-sidebar-styling-starts */
53
- /* author bio styling.. */
54
- .author_image .author-thumb {
55
- width: 60px;
56
- height: 60px;
57
- object-fit: cover;
58
- }
59
- .author-meta .postName {
60
- font-size: 18px !important;
61
- color: rgba(0, 0, 0, 0.8) !important;
62
- text-decoration: none !important;
63
- font-family: 'Merriweather', serif;
64
- }
65
- .btn_follow {
66
- margin-left: 5px;
67
- margin-bottom: 10px;
68
- border-color: #02b875;
69
- color: #1c9963 !important;
70
- padding: 3px 10px;
71
- text-align: center;
72
- border-radius: 999em;
73
- font-size: 1.5rem;
74
- display: inline-block;
75
- border: 1px solid;
76
- }
77
- .author_bio {
78
- font-family: 'Merriweather', serif;
79
- color: rgba(0, 0, 0, 0.44);
80
- font-size: 13px;
81
- line-height: 20px;
82
- }
83
- /* close */
84
-
85
- /* pagination-styling-forblog */
86
- .pointerup i.fa {
87
- color: #eaeaea;
88
- }
89
- .pointerup {
90
- margin-bottom: -9px;
91
- margin-left: 49%;
92
- font-size: 30px;
93
- }
94
- .bottompagination span.navigation {
95
- display: block;
96
- font-size: 0.93rem;
97
- padding: 15px 0 0 0;
98
- text-align: center;
99
- margin-bottom: 0rem;
100
- color: #999;
101
- border-top: 1px solid #ddd;
102
- }
103
- .pagination {
104
- display: -ms-flexbox;
105
- display: flex;
106
- padding-left: 0;
107
- list-style: none;
108
- border-radius: 0.25rem;
109
- display: block;
110
- color: green;
111
- font-size: 15px;
112
- margin-bottom: 30px;
113
- }
114
- .pageUrl {
115
- color: green;
116
- font-size: 12px;
117
- font-weight: 900;
118
- text-decoration: none;
119
- margin-right: 10px;
120
- }
121
- .pageUrl:hover {
122
- text-decoration: none;
123
- color: green;
124
- }
125
-
126
- @media (max-width: 767px) {
127
- .socialIons > .item-lists2 {
128
- flex-direction: row;
129
- align-items: center;
130
- }
131
- .socialIons > .item-lists2 > li {
132
- padding-right: 30px;
133
- margin: 0;
134
- }
135
- .sep {
136
- margin: 0;
137
- }
138
- .author-meta {
139
- padding-left: 15px;
140
- }
141
- .comments-count {
142
- margin: 18px 0;
143
- text-align: left;
144
- }
145
- }