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.
@@ -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
- display: flex;
7
- flex-wrap: wrap;
8
- list-style: none;
9
- padding: 0px 100px;
10
- padding-bottom: 50px;
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
- width: 33.3%;
15
- padding: 12px 0px;
16
- padding-right: 12px;
17
- margin: 0 !important
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
- display: flex;
22
- -webkit-box-align: center;
23
- align-items: center;
24
- position: relative;
25
- width: 100%;
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
- display: flex;
30
- position: relative;
31
- border: 1px solid rgb(232, 232, 232);
32
- border-radius: 4px;
33
- width: 100%;
34
- cursor: pointer;
35
- font-weight: 700;
36
- font-size: 16px;
37
- line-height: 24px;
38
- color: rgb(26, 26, 26);
39
- user-select: none;
40
- outline: none;
41
- height: 120px;
42
- background: rgb(250, 250, 250);
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
- background: rgb(244, 244, 244);
48
+ background: rgb(244, 244, 244);
47
49
  }
48
50
 
49
51
  .home1-feature-text {
50
- position: relative;
51
- padding: 16px 56px 16px 64px;
52
- width: 100%;
53
- height: 100%;
54
- text-align: left;
55
- font-size: 15px;
56
- font-weight: 600;
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
- font-weight: 400;
61
- font-size: 13px;
62
- line-height: 20px;
63
- color: rgb(26, 26, 26);
64
- position: absolute;
65
- pointer-events: none;
66
- text-align: left;
67
- left: 65px;
68
- right: 57px;
69
- margin: 0px;
70
- top: 41px;
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
- position: absolute;
75
- pointer-events: none;
76
- left: 17px;
77
- top: 17px;
78
- border-radius: 5px;
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
- position: absolute;
83
- color: rgb(26, 26, 26);
84
- pointer-events: none;
85
- right: 17px;
86
- top: 17px;
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
- .home1-features {
91
- padding: 0 !important;
92
- }
91
+ @media (max-width: 1200px) {
92
+ .home1-features {
93
+ padding: 0 !important;
94
+ }
93
95
  }
94
96
 
95
- @media (max-width:992px) {
96
- .home1-features-box {
97
- width: 50%;
98
- }
97
+ @media (max-width: 992px) {
98
+ .home1-features-box {
99
+ width: 50%;
100
+ }
99
101
  }
100
102
 
101
- @media (max-width:768px) {
102
- .home1-features-box {
103
- width: 100%;
104
- }
103
+ @media (max-width: 768px) {
104
+ .home1-features-box {
105
+ width: 100%;
106
+ }
105
107
 
106
- .home1-features-box {
107
- padding-right: 0;
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
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.8
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-03 00:00:00.000000000 Z
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