appscms-tools-theme 3.8.7 → 3.8.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/feature/en/compress-pdf.json +308 -1
- data/_includes/appscms/customblog/pageRelatedPosts.html +85 -0
- data/_includes/appscms/customblog/recentposts.html +68 -0
- data/_includes/appscms/customblog/relatedBlogs.html +84 -0
- data/_includes/appscms/customblog/relatedposts.html +201 -0
- data/_includes/appscms/featurePageAuthors/featurePageAuthors.html +97 -0
- data/_includes/appscms/footer/products.html +1 -1
- data/_includes/appscms/headings/headings.html +2 -1
- data/_includes/appscms/infographics/infographics.html +109 -0
- data/_includes/appscms/recent-posts/{recent-posts.html → recent_posts.html} +90 -90
- data/_includes/appscms/recent-posts/related_categories_post.html +199 -0
- data/_includes/cssfile/links.html +52 -22
- data/_layouts/appscms-feature-result.html +94 -0
- data/_layouts/appscms-feature.html +28 -8
- data/_layouts/appscms-home.html +1 -1
- data/assets/css/appscms-feature.css +114 -0
- data/assets/css/appscms-theme.css +201 -1
- metadata +10 -2
@@ -775,7 +775,7 @@ body {
|
|
775
775
|
}
|
776
776
|
.appscms-footer {
|
777
777
|
background-color: var(--while-color);
|
778
|
-
padding: 10px;
|
778
|
+
padding: 44px 10px 10px 10px;
|
779
779
|
border-top: 1px solid rgb(148, 148, 148);
|
780
780
|
}
|
781
781
|
|
@@ -954,3 +954,203 @@ body {
|
|
954
954
|
.audio-h2 {
|
955
955
|
font-size: 22px;
|
956
956
|
}
|
957
|
+
.shareModal {
|
958
|
+
display: none;
|
959
|
+
position: fixed;
|
960
|
+
z-index: 100000000000;
|
961
|
+
left: 0;
|
962
|
+
top: 0;
|
963
|
+
width: 100%;
|
964
|
+
height: 100%;
|
965
|
+
overflow: auto;
|
966
|
+
background-color: rgba(0, 0, 0, 0.5);
|
967
|
+
}
|
968
|
+
|
969
|
+
.shareModal .share-modal-content {
|
970
|
+
background-color: #fefefe;
|
971
|
+
margin: 15% auto;
|
972
|
+
padding: 20px;
|
973
|
+
/* border: 1px solid #888; */
|
974
|
+
width: 70%;
|
975
|
+
height: 200px;
|
976
|
+
text-align: center;
|
977
|
+
}
|
978
|
+
|
979
|
+
.shareModal .close-share-modal {
|
980
|
+
color: #aaa;
|
981
|
+
float: right;
|
982
|
+
display: none;
|
983
|
+
font-size: 28px;
|
984
|
+
font-weight: bold;
|
985
|
+
}
|
986
|
+
.shareModal h5 {
|
987
|
+
color: #000;
|
988
|
+
padding-top: 10px;
|
989
|
+
font-weight: 700;
|
990
|
+
}
|
991
|
+
.shareModal .close-share-modal:hover,
|
992
|
+
.shareModal .close-share-modal:focus {
|
993
|
+
color: black;
|
994
|
+
text-decoration: none;
|
995
|
+
cursor: pointer;
|
996
|
+
}
|
997
|
+
|
998
|
+
.share-modal-social {
|
999
|
+
display: flex;
|
1000
|
+
gap: 30px;
|
1001
|
+
height: 100%;
|
1002
|
+
padding-bottom: 60px;
|
1003
|
+
align-items: center;
|
1004
|
+
justify-content: center;
|
1005
|
+
}
|
1006
|
+
.share-modal-social a {
|
1007
|
+
color: #000;
|
1008
|
+
}
|
1009
|
+
.share-modal-social a i {
|
1010
|
+
font-size: 30px;
|
1011
|
+
}
|
1012
|
+
|
1013
|
+
.authors-list {
|
1014
|
+
border-top: 1px solid rgb(224, 224, 224);
|
1015
|
+
margin-top: 100px;
|
1016
|
+
padding: 100px;
|
1017
|
+
}
|
1018
|
+
.authors-list a {
|
1019
|
+
color: var(--dark-gray);
|
1020
|
+
}
|
1021
|
+
.featurePageAuthor {
|
1022
|
+
display: flex;
|
1023
|
+
flex-direction: column;
|
1024
|
+
width: 100%;
|
1025
|
+
justify-content: center;
|
1026
|
+
}
|
1027
|
+
|
1028
|
+
.featurePageAuthor .author-meta {
|
1029
|
+
width: 500px;
|
1030
|
+
margin: 0 auto;
|
1031
|
+
padding-bottom: 5rem;
|
1032
|
+
}
|
1033
|
+
|
1034
|
+
.featurePageAuthor .author-meta .authorName {
|
1035
|
+
font-size: 20px;
|
1036
|
+
padding: 1rem 0px;
|
1037
|
+
font-weight: 900;
|
1038
|
+
text-align: center;
|
1039
|
+
}
|
1040
|
+
|
1041
|
+
.featurePageAuthor .author-img {
|
1042
|
+
width: 100px;
|
1043
|
+
height: 100px;
|
1044
|
+
border-radius: 100%;
|
1045
|
+
}
|
1046
|
+
|
1047
|
+
.featurePageAuthor .author_bio {
|
1048
|
+
font-size: 16px;
|
1049
|
+
}
|
1050
|
+
|
1051
|
+
@media (max-width: 768px) {
|
1052
|
+
.authors-list {
|
1053
|
+
padding: 25px;
|
1054
|
+
}
|
1055
|
+
|
1056
|
+
.featurePageAuthor .author-meta {
|
1057
|
+
width: 100%;
|
1058
|
+
}
|
1059
|
+
}
|
1060
|
+
.contributor {
|
1061
|
+
width: 100px;
|
1062
|
+
}
|
1063
|
+
.contributor .contributor-name {
|
1064
|
+
font-size: 13px;
|
1065
|
+
margin-top: 8px;
|
1066
|
+
text-transform: capitalize;
|
1067
|
+
}
|
1068
|
+
.infographics_section {
|
1069
|
+
width: 100%;
|
1070
|
+
padding: 50px 0px 50px 0px;
|
1071
|
+
border-top: 1px solid rgb(224, 224, 224);
|
1072
|
+
}
|
1073
|
+
|
1074
|
+
.infographics_section .infographics-desc {
|
1075
|
+
position: absolute;
|
1076
|
+
color: #000;
|
1077
|
+
bottom: 0;
|
1078
|
+
}
|
1079
|
+
|
1080
|
+
.infographics_section .slider {
|
1081
|
+
position: relative;
|
1082
|
+
max-width: 40rem;
|
1083
|
+
height: 26.625rem;
|
1084
|
+
margin: 0 auto;
|
1085
|
+
overflow: hidden;
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
.infographics_section .slide {
|
1089
|
+
position: absolute;
|
1090
|
+
top: 0;
|
1091
|
+
width: 100%;
|
1092
|
+
height: 26.625rem;
|
1093
|
+
display: flex;
|
1094
|
+
align-items: center;
|
1095
|
+
justify-content: center;
|
1096
|
+
transition: transform 1s;
|
1097
|
+
}
|
1098
|
+
|
1099
|
+
.infographics_section .slide img {
|
1100
|
+
width: 200px;
|
1101
|
+
height: 100%;
|
1102
|
+
/* object-fit: contain; */
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
.infographics_section button {
|
1106
|
+
background: none;
|
1107
|
+
border: none;
|
1108
|
+
}
|
1109
|
+
|
1110
|
+
.infographics_section button .fas {
|
1111
|
+
color: #000;
|
1112
|
+
}
|
1113
|
+
|
1114
|
+
.infographics_section .btn-slide {
|
1115
|
+
position: absolute;
|
1116
|
+
top: 50%;
|
1117
|
+
z-index: 10;
|
1118
|
+
|
1119
|
+
height: 5.5rem;
|
1120
|
+
width: 5.5rem;
|
1121
|
+
cursor: pointer;
|
1122
|
+
}
|
1123
|
+
|
1124
|
+
.infographics_section .prev {
|
1125
|
+
left: 3rem;
|
1126
|
+
transform: translate(-50%, -50%);
|
1127
|
+
}
|
1128
|
+
|
1129
|
+
.infographics_section .next {
|
1130
|
+
right: 3rem;
|
1131
|
+
transform: translate(50%, -50%);
|
1132
|
+
}
|
1133
|
+
|
1134
|
+
.infographics_section .dots-container {
|
1135
|
+
display: flex;
|
1136
|
+
justify-content: center;
|
1137
|
+
align-items: center;
|
1138
|
+
position: relative;
|
1139
|
+
}
|
1140
|
+
|
1141
|
+
.infographics_section .dot {
|
1142
|
+
width: 25px;
|
1143
|
+
height: 5px;
|
1144
|
+
margin: 15px 5px;
|
1145
|
+
border-radius: 0.5rem;
|
1146
|
+
background: rgba(39, 39, 39, 0.5);
|
1147
|
+
cursor: pointer;
|
1148
|
+
}
|
1149
|
+
|
1150
|
+
.infographics_section .dot.active {
|
1151
|
+
background: #272727;
|
1152
|
+
}
|
1153
|
+
.slide img:hover {
|
1154
|
+
transform: scale(1.4);
|
1155
|
+
transition: cubic-bezier(0.165, 0.84, 0.44, 1);
|
1156
|
+
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appscms-tools-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.8.
|
4
|
+
version: 3.8.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vivek-appscms
|
@@ -110,10 +110,15 @@ files:
|
|
110
110
|
- _includes/adsense/adsense.html
|
111
111
|
- _includes/alternates/alternates.html
|
112
112
|
- _includes/appscms/category-tabs/category-tabs.html
|
113
|
+
- _includes/appscms/customblog/pageRelatedPosts.html
|
114
|
+
- _includes/appscms/customblog/recentposts.html
|
115
|
+
- _includes/appscms/customblog/relatedBlogs.html
|
116
|
+
- _includes/appscms/customblog/relatedposts.html
|
113
117
|
- _includes/appscms/extras/ratings.html
|
114
118
|
- _includes/appscms/extras/recent-posts.html
|
115
119
|
- _includes/appscms/extras/traffic-count.html
|
116
120
|
- _includes/appscms/faq/faq.html
|
121
|
+
- _includes/appscms/featurePageAuthors/featurePageAuthors.html
|
117
122
|
- _includes/appscms/featurehighlight/featurehighlight.html
|
118
123
|
- _includes/appscms/footer/footer.html
|
119
124
|
- _includes/appscms/footer/products.html
|
@@ -122,9 +127,11 @@ files:
|
|
122
127
|
- _includes/appscms/headings/headings.html
|
123
128
|
- _includes/appscms/home/feature-boxes.html
|
124
129
|
- _includes/appscms/howto/howto.html
|
130
|
+
- _includes/appscms/infographics/infographics.html
|
125
131
|
- _includes/appscms/navbars/navbar.html
|
126
132
|
- _includes/appscms/navbars/toolbar.html
|
127
|
-
- _includes/appscms/recent-posts/
|
133
|
+
- _includes/appscms/recent-posts/recent_posts.html
|
134
|
+
- _includes/appscms/recent-posts/related_categories_post.html
|
128
135
|
- _includes/appscms/scripts/script.html
|
129
136
|
- _includes/appscms/searchbar/searchbar.html
|
130
137
|
- _includes/appscms/uploadbutton/uploadbutton.html
|
@@ -180,6 +187,7 @@ files:
|
|
180
187
|
- _layouts/appscms-contact.html
|
181
188
|
- _layouts/appscms-disclaimer.html
|
182
189
|
- _layouts/appscms-download.html
|
190
|
+
- _layouts/appscms-feature-result.html
|
183
191
|
- _layouts/appscms-feature.html
|
184
192
|
- _layouts/appscms-help.html
|
185
193
|
- _layouts/appscms-home.html
|