appscms-tools-theme 2.6.8 → 2.6.9
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 +4 -4
- data/_data/feature/en/3_shop_posters.json +352 -0
- data/_data/home/en/posters.json +324 -0
- data/_data/photo-categories.json +104 -12
- data/_data/photoeffects.json +31 -116
- data/_layouts/frame.html +216 -197
- data/_layouts/photo-effects-home.html +39 -23
- data/assets/css/frame.css +726 -717
- data/assets/css/home-1.css +76 -107
- data/assets/homeimages/3_shop_posters-main.png +0 -0
- data/assets/images/3_shop_posters.png +0 -0
- metadata +6 -2
data/assets/css/home-1.css
CHANGED
|
@@ -1,146 +1,115 @@
|
|
|
1
1
|
/***************************
|
|
2
2
|
HOME FEATURE BOX DESIGN CSS
|
|
3
3
|
****************************/
|
|
4
|
-
|
|
4
|
+
body {
|
|
5
|
+
font-family: "Dancing Script", cursive;
|
|
6
|
+
}
|
|
5
7
|
.home1-features {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-wrap: wrap;
|
|
10
|
+
list-style: none;
|
|
11
|
+
padding: 0px 100px;
|
|
12
|
+
padding-bottom: 50px;
|
|
11
13
|
}
|
|
12
14
|
|
|
13
15
|
.home1-features-box {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
width: 33.3%;
|
|
17
|
+
padding: 12px 0px;
|
|
18
|
+
padding-right: 12px;
|
|
19
|
+
margin: 0 !important;
|
|
18
20
|
}
|
|
19
21
|
|
|
20
22
|
.home1-inner-box {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
display: flex;
|
|
24
|
+
-webkit-box-align: center;
|
|
25
|
+
align-items: center;
|
|
26
|
+
position: relative;
|
|
27
|
+
width: 100%;
|
|
26
28
|
}
|
|
27
29
|
|
|
28
30
|
.home1-feature-name {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
31
|
+
display: flex;
|
|
32
|
+
position: relative;
|
|
33
|
+
border: 1px solid rgb(232, 232, 232);
|
|
34
|
+
border-radius: 4px;
|
|
35
|
+
width: 100%;
|
|
36
|
+
cursor: pointer;
|
|
37
|
+
font-weight: 700;
|
|
38
|
+
font-size: 16px;
|
|
39
|
+
line-height: 24px;
|
|
40
|
+
color: rgb(26, 26, 26);
|
|
41
|
+
user-select: none;
|
|
42
|
+
outline: none;
|
|
43
|
+
height: 120px;
|
|
44
|
+
background: rgb(250, 250, 250);
|
|
43
45
|
}
|
|
44
46
|
|
|
45
47
|
.home1-feature-name:hover {
|
|
46
|
-
|
|
48
|
+
background: rgb(244, 244, 244);
|
|
47
49
|
}
|
|
48
50
|
|
|
49
51
|
.home1-feature-text {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
52
|
+
position: relative;
|
|
53
|
+
padding: 16px 56px 16px 64px;
|
|
54
|
+
width: 100%;
|
|
55
|
+
height: 100%;
|
|
56
|
+
text-align: left;
|
|
57
|
+
font-size: 15px;
|
|
58
|
+
font-weight: 600;
|
|
57
59
|
}
|
|
58
60
|
|
|
59
61
|
.home1-feature-desc {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
62
|
+
font-weight: 400;
|
|
63
|
+
font-size: 13px;
|
|
64
|
+
line-height: 20px;
|
|
65
|
+
color: rgb(26, 26, 26);
|
|
66
|
+
position: absolute;
|
|
67
|
+
pointer-events: none;
|
|
68
|
+
text-align: left;
|
|
69
|
+
left: 65px;
|
|
70
|
+
right: 57px;
|
|
71
|
+
margin: 0px;
|
|
72
|
+
top: 41px;
|
|
71
73
|
}
|
|
72
74
|
|
|
73
75
|
.home1-feature-img {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
76
|
+
position: absolute;
|
|
77
|
+
pointer-events: none;
|
|
78
|
+
left: 17px;
|
|
79
|
+
top: 17px;
|
|
80
|
+
border-radius: 5px;
|
|
79
81
|
}
|
|
80
82
|
|
|
81
83
|
.home1-right-arrow-icon {
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
84
|
+
position: absolute;
|
|
85
|
+
color: rgb(26, 26, 26);
|
|
86
|
+
pointer-events: none;
|
|
87
|
+
right: 17px;
|
|
88
|
+
top: 17px;
|
|
87
89
|
}
|
|
88
90
|
|
|
89
|
-
@media (max-width:1200px) {
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
91
|
+
@media (max-width: 1200px) {
|
|
92
|
+
.home1-features {
|
|
93
|
+
padding: 0 !important;
|
|
94
|
+
}
|
|
93
95
|
}
|
|
94
96
|
|
|
95
|
-
@media (max-width:992px) {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
97
|
+
@media (max-width: 992px) {
|
|
98
|
+
.home1-features-box {
|
|
99
|
+
width: 50%;
|
|
100
|
+
}
|
|
99
101
|
}
|
|
100
102
|
|
|
101
|
-
@media (max-width:768px) {
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
103
|
+
@media (max-width: 768px) {
|
|
104
|
+
.home1-features-box {
|
|
105
|
+
width: 100%;
|
|
106
|
+
}
|
|
105
107
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
108
|
+
.home1-features-box {
|
|
109
|
+
padding-right: 0;
|
|
110
|
+
}
|
|
109
111
|
}
|
|
110
112
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
113
|
/* Another HOME PAGE design
|
|
145
114
|
.home1-tools-list {
|
|
146
115
|
margin: 0 auto;
|
|
@@ -215,4 +184,4 @@ HOME FEATURE BOX DESIGN CSS
|
|
|
215
184
|
|
|
216
185
|
} */
|
|
217
186
|
|
|
218
|
-
/* close */
|
|
187
|
+
/* close */
|
|
Binary file
|
|
Binary file
|
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: 2.6.
|
|
4
|
+
version: 2.6.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-11-
|
|
11
|
+
date: 2022-11-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -2357,6 +2357,7 @@ files:
|
|
|
2357
2357
|
- _data/customcdns/customcdns.yml
|
|
2358
2358
|
- _data/disclaimer/en/disclaimer.json
|
|
2359
2359
|
- _data/download/en/download.json
|
|
2360
|
+
- _data/feature/en/3_shop_posters.json
|
|
2360
2361
|
- _data/feature/en/allele-frequency.json
|
|
2361
2362
|
- _data/feature/en/batch-conversion.json
|
|
2362
2363
|
- _data/feature/en/compress-pdf.json
|
|
@@ -2376,6 +2377,7 @@ files:
|
|
|
2376
2377
|
- _data/home-1/en/en.json
|
|
2377
2378
|
- _data/home/en/en.json
|
|
2378
2379
|
- _data/home/en/photoeffects.json
|
|
2380
|
+
- _data/home/en/posters.json
|
|
2379
2381
|
- _data/home/hi/hi.json
|
|
2380
2382
|
- _data/languagesupport/compress-pdf-langs.json
|
|
2381
2383
|
- _data/languagesupport/index-langs.json
|
|
@@ -2585,6 +2587,8 @@ files:
|
|
|
2585
2587
|
- assets/fileimg/xeDZX8x.jpeg
|
|
2586
2588
|
- assets/fonts/Calligraphy.ttf
|
|
2587
2589
|
- assets/guaranty.svg
|
|
2590
|
+
- assets/homeimages/3_shop_posters-main.png
|
|
2591
|
+
- assets/images/3_shop_posters.png
|
|
2588
2592
|
- assets/images/Ankita.webp
|
|
2589
2593
|
- assets/images/Anushka.webp
|
|
2590
2594
|
- assets/images/Arjyahi.webp
|