ThemevampRails 0.0.1
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 +7 -0
- data/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +31 -0
- data/Rakefile +2 -0
- data/ThemevampRails.gemspec +23 -0
- data/lib/ThemevampRails/version.rb +3 -0
- data/lib/ThemevampRails.rb +6 -0
- data/vendor/assets/font/FontAwesome.otf +0 -0
- data/vendor/assets/font/fontawesome-webfont.eot +0 -0
- data/vendor/assets/font/fontawesome-webfont.svg +399 -0
- data/vendor/assets/font/fontawesome-webfont.svgz +0 -0
- data/vendor/assets/font/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/font/fontawesome-webfont.woff +0 -0
- data/vendor/assets/font/fontawesome-webfontd41d.eot +0 -0
- data/vendor/assets/images/body-bg.png +0 -0
- data/vendor/assets/images/glyphicons-halflings-white.html +7 -0
- data/vendor/assets/images/glyphicons-halflings.html +7 -0
- data/vendor/assets/images/icons-sa7c41345d9.png +0 -0
- data/vendor/assets/images/message_avatar1.png +0 -0
- data/vendor/assets/images/message_avatar2.png +0 -0
- data/vendor/assets/images/signin/check.png +0 -0
- data/vendor/assets/images/signin/fb_btn.png +0 -0
- data/vendor/assets/images/signin/password.png +0 -0
- data/vendor/assets/images/signin/twitter_btn.png +0 -0
- data/vendor/assets/images/signin/user.png +0 -0
- data/vendor/assets/javascript/base.js +16 -0
- data/vendor/assets/javascript/bootstrap.js +1726 -0
- data/vendor/assets/javascript/chart.min.js +39 -0
- data/vendor/assets/javascript/charts/area.js +42 -0
- data/vendor/assets/javascript/charts/bar.js +35 -0
- data/vendor/assets/javascript/charts/donut.js +21 -0
- data/vendor/assets/javascript/charts/line.js +20 -0
- data/vendor/assets/javascript/charts/pie.js +41 -0
- data/vendor/assets/javascript/excanvas.min.js +1 -0
- data/vendor/assets/javascript/faq.js +159 -0
- data/vendor/assets/javascript/full-calendar/fullcalendar.css +655 -0
- data/vendor/assets/javascript/full-calendar/fullcalendar.min.js +114 -0
- data/vendor/assets/javascript/guidely/guidely-number.png +0 -0
- data/vendor/assets/javascript/guidely/guidely.css +144 -0
- data/vendor/assets/javascript/guidely/guidely.min.js +11 -0
- data/vendor/assets/javascript/jquery-1.7.2.min.js +4 -0
- data/vendor/assets/javascript/signin.js +13 -0
- data/vendor/assets/stylesheets/base-admin-responsive.css +6 -0
- data/vendor/assets/stylesheets/bootstrap-responsive.min.css +12 -0
- data/vendor/assets/stylesheets/bootstrap.css +4437 -0
- data/vendor/assets/stylesheets/bootstrap.min.css +3647 -0
- data/vendor/assets/stylesheets/font-awesome-ie7.css +1203 -0
- data/vendor/assets/stylesheets/font-awesome-ie7.min.css +384 -0
- data/vendor/assets/stylesheets/font-awesome.css +1479 -0
- data/vendor/assets/stylesheets/font-awesome.min.css +403 -0
- data/vendor/assets/stylesheets/pages/dashboard.css +326 -0
- data/vendor/assets/stylesheets/pages/faq.css +109 -0
- data/vendor/assets/stylesheets/pages/plans.css +319 -0
- data/vendor/assets/stylesheets/pages/reports.css +33 -0
- data/vendor/assets/stylesheets/pages/signin.css +247 -0
- data/vendor/assets/stylesheets/style.css +1286 -0
- metadata +129 -0
|
@@ -0,0 +1,326 @@
|
|
|
1
|
+
/*------------------------------------------------------------------
|
|
2
|
+
Bootstrap Admin Template by EGrappler.com
|
|
3
|
+
------------------------------------------------------------------*/
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
/*------------------------------------------------------------------
|
|
8
|
+
[1. Shortcuts / .shortcuts]
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
.shortcuts {
|
|
12
|
+
text-align: center;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.shortcuts .shortcut {
|
|
16
|
+
width: 22.50%;
|
|
17
|
+
display: inline-block;
|
|
18
|
+
padding: 12px 0;
|
|
19
|
+
margin: 0 .9% 1em;
|
|
20
|
+
vertical-align: top;
|
|
21
|
+
|
|
22
|
+
text-decoration: none;
|
|
23
|
+
|
|
24
|
+
background: #f9f6f1;
|
|
25
|
+
|
|
26
|
+
border-radius: 5px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.shortcuts .shortcut .shortcut-icon {
|
|
30
|
+
margin-top: .25em;
|
|
31
|
+
margin-bottom: .25em;
|
|
32
|
+
|
|
33
|
+
font-size: 32px;
|
|
34
|
+
color: #545454;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.shortcuts .shortcut:hover {
|
|
38
|
+
background: #00ba8b;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.shortcuts .shortcut:hover span{
|
|
42
|
+
color: #fff;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.shortcuts .shortcut:hover .shortcut-icon {
|
|
46
|
+
color: #fff;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.shortcuts .shortcut-label {
|
|
50
|
+
display: block;
|
|
51
|
+
|
|
52
|
+
font-weight: 400;
|
|
53
|
+
color: #545454;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
/*------------------------------------------------------------------
|
|
59
|
+
[2. Stats / .stats]
|
|
60
|
+
*/
|
|
61
|
+
|
|
62
|
+
.stats {
|
|
63
|
+
width: 100%;
|
|
64
|
+
display: table;
|
|
65
|
+
padding: 0 0 0 10px;
|
|
66
|
+
margin-top: .5em;
|
|
67
|
+
margin-bottom: 1.9em;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.stats .stat {
|
|
71
|
+
display: table-cell;
|
|
72
|
+
width: 40%;
|
|
73
|
+
vertical-align: top;
|
|
74
|
+
|
|
75
|
+
font-size: 11px;
|
|
76
|
+
font-weight: bold;
|
|
77
|
+
color: #999;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.stat-value {
|
|
81
|
+
display: block;
|
|
82
|
+
margin-bottom: .55em;
|
|
83
|
+
|
|
84
|
+
font-size: 30px;
|
|
85
|
+
font-weight: bold;
|
|
86
|
+
letter-spacing: -2px;
|
|
87
|
+
color: #444;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.stat-time {
|
|
91
|
+
text-align: center;
|
|
92
|
+
padding-top: 1.5em;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.stat-time .stat-value {
|
|
96
|
+
color: #19bc9c;
|
|
97
|
+
font-size: 40px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.stats #donut-chart {
|
|
101
|
+
height: 100px;
|
|
102
|
+
margin-left: -20px;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
/*------------------------------------------------------------------
|
|
110
|
+
[3. News Item / .news-items]
|
|
111
|
+
*/
|
|
112
|
+
|
|
113
|
+
.news-items {
|
|
114
|
+
margin: 1em 0 0;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.news-items li {
|
|
118
|
+
display: table;
|
|
119
|
+
padding: 0 2em 0 1.5em;
|
|
120
|
+
padding-bottom: 1em;
|
|
121
|
+
margin-bottom: 1em;
|
|
122
|
+
border-bottom: 1px dotted #CCC;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.news-items li:last-child { padding-bottom: 0; border: none; }
|
|
126
|
+
|
|
127
|
+
.news-item-date {
|
|
128
|
+
display: table-cell;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.news-item-detail {
|
|
132
|
+
display: table-cell;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.news-item-title {
|
|
136
|
+
font-size: 13px;
|
|
137
|
+
font-weight: 600;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.news-item-date {
|
|
141
|
+
width: 75px;
|
|
142
|
+
vertical-align: middle;
|
|
143
|
+
text-align: center;
|
|
144
|
+
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.news-item-day {
|
|
148
|
+
display: block;
|
|
149
|
+
margin-bottom: .25em;
|
|
150
|
+
|
|
151
|
+
font-size: 24px;
|
|
152
|
+
color: #888;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.news-item-preview {
|
|
156
|
+
margin-bottom: 0;
|
|
157
|
+
|
|
158
|
+
color: #777;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.news-item-month {
|
|
162
|
+
display: block;
|
|
163
|
+
padding-right: 1px;
|
|
164
|
+
|
|
165
|
+
font-size: 12px;
|
|
166
|
+
font-weight: 600;
|
|
167
|
+
color: #888;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
/*------------------------------------------------------------------
|
|
173
|
+
[4. Action Table / .action-table]
|
|
174
|
+
*/
|
|
175
|
+
|
|
176
|
+
.action-table .btn-small {
|
|
177
|
+
padding: 4px 5px 5px;
|
|
178
|
+
|
|
179
|
+
font-size: 10px;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.action-table .td-actions {
|
|
183
|
+
width: 80px;
|
|
184
|
+
|
|
185
|
+
text-align: center;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.action-table .td-actions .btn {
|
|
189
|
+
margin-right: .5em;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.action-table .td-actions .btn:last-child {
|
|
193
|
+
margin-rigth: 0;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
#big_stats
|
|
199
|
+
{
|
|
200
|
+
width: 100%;
|
|
201
|
+
display: table;
|
|
202
|
+
margin-top: 1.5em;
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.big-stats-container .widget-content {
|
|
208
|
+
border:0;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
#big_stats .stat
|
|
212
|
+
{
|
|
213
|
+
width: 25%;
|
|
214
|
+
height: 90px;
|
|
215
|
+
text-align: center;
|
|
216
|
+
display: table-cell;
|
|
217
|
+
padding: 0;
|
|
218
|
+
position: relative;
|
|
219
|
+
|
|
220
|
+
border-right: 1px solid #CCC;
|
|
221
|
+
border-left: 1px solid #FFF;
|
|
222
|
+
}
|
|
223
|
+
#big_stats i { font-size:30px; display:block; line-height: 40px; color:#b2afaa;}
|
|
224
|
+
#big_stats .stat:hover i {color:#19bc9c;}
|
|
225
|
+
|
|
226
|
+
h6.bigstats{margin: 20px;
|
|
227
|
+
border-bottom: 1px solid #eee;
|
|
228
|
+
padding-bottom: 20px;
|
|
229
|
+
margin-bottom: 26px;}
|
|
230
|
+
|
|
231
|
+
#big_stats .stat:first-child {
|
|
232
|
+
border-left: none;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
#big_stats .stat:last-child {
|
|
236
|
+
border-right: none;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
#big_stats .stat h4
|
|
240
|
+
{
|
|
241
|
+
font-size: 11px;
|
|
242
|
+
font-weight: bold;
|
|
243
|
+
color: #777;
|
|
244
|
+
margin-bottom: 1.5em;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
#big_stats .stat .value
|
|
248
|
+
{
|
|
249
|
+
font-size: 45px;
|
|
250
|
+
font-weight: bold;
|
|
251
|
+
color: #545454;
|
|
252
|
+
line-height: 1em;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
@media all and (max-width: 950px) and (min-width: 1px) {
|
|
258
|
+
|
|
259
|
+
#big_stats {
|
|
260
|
+
display: block;
|
|
261
|
+
margin-bottom: -40px;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
#big_stats .stat {
|
|
265
|
+
width: 49%;
|
|
266
|
+
display: block;
|
|
267
|
+
margin-bottom: 3em;
|
|
268
|
+
float: left;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
#big_stats .stat:nth-child(2) {
|
|
272
|
+
border-right: none;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
#big_stats .stat:nth-child(3) {
|
|
276
|
+
border-left: none;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
@media (max-width: 767px) {
|
|
282
|
+
#big_stats .stat .value {
|
|
283
|
+
font-size: 40px;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
@media (max-width: 979px) {
|
|
291
|
+
|
|
292
|
+
.shortcuts .shortcut {
|
|
293
|
+
width: 31%;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
@media (max-width: 480px) {
|
|
299
|
+
|
|
300
|
+
.stats .stat {
|
|
301
|
+
|
|
302
|
+
margin-bottom: 3em;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.stats .stat .stat-value {
|
|
306
|
+
margin-bottom: .15em;
|
|
307
|
+
|
|
308
|
+
font-size: 20px;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.stats {
|
|
312
|
+
float: left;
|
|
313
|
+
|
|
314
|
+
display: block;
|
|
315
|
+
|
|
316
|
+
margin-bottom: 0;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
#chart-stats {
|
|
320
|
+
margin: 2em 0 1em;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.shortcuts .shortcut {
|
|
324
|
+
width: 48%;
|
|
325
|
+
}
|
|
326
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
/*------------------------------------------------------------------
|
|
2
|
+
Bootstrap Admin Template by EGrappler.com
|
|
3
|
+
------------------------------------------------------------------*/
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
.faq-search {
|
|
9
|
+
margin-bottom: 2em;
|
|
10
|
+
|
|
11
|
+
text-align: right;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.faq-search input {
|
|
15
|
+
width: 96%;
|
|
16
|
+
display: block;
|
|
17
|
+
padding: 2%;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
.faq-empty {
|
|
23
|
+
display: none;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
.faq-toc {
|
|
29
|
+
padding: 1.5em 0;
|
|
30
|
+
margin: 2em 0 0;
|
|
31
|
+
|
|
32
|
+
border: 1px dotted #CCC;
|
|
33
|
+
border-right: none;
|
|
34
|
+
border-left: none;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.faq-toc ol {
|
|
38
|
+
padding: 0;
|
|
39
|
+
margin: 0;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.faq-toc li {
|
|
43
|
+
margin-bottom: .75em;
|
|
44
|
+
|
|
45
|
+
list-style: none;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.faq-toc a {
|
|
49
|
+
margin-left: .5em;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
.faq-list {
|
|
55
|
+
padding: 0;
|
|
56
|
+
margin: 3em 0 0;
|
|
57
|
+
|
|
58
|
+
list-style: none;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.faq-list li {
|
|
62
|
+
display: table;
|
|
63
|
+
margin-bottom: 2em;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.faq-icon {
|
|
67
|
+
display: table-cell;
|
|
68
|
+
padding-right: 1.25em;
|
|
69
|
+
vertical-align: top;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.faq-text {
|
|
73
|
+
display: table-cell;
|
|
74
|
+
vertical-align: top;
|
|
75
|
+
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
.faq-number {
|
|
80
|
+
width: 32px;
|
|
81
|
+
height: 32px;
|
|
82
|
+
|
|
83
|
+
font-size: 14px;
|
|
84
|
+
font-weight: 600;
|
|
85
|
+
text-align: center;
|
|
86
|
+
line-height: 32px;
|
|
87
|
+
color: #FFF;
|
|
88
|
+
|
|
89
|
+
background: #00ba8b;
|
|
90
|
+
|
|
91
|
+
border: 3px solid #FFF;
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
border-radius: 100px;
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
.btn-support-ask {
|
|
104
|
+
display: block; font-size: 22px; padding: 14px 0; font-weight: 600; margin-bottom: .75em;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.btn-support-contact {
|
|
108
|
+
display: block; padding: 12px 0; font-size: 18px; font-weight: 600;
|
|
109
|
+
}
|
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
/*------------------------------------------------------------------
|
|
2
|
+
Bootstrap Admin Template by EGrappler.com
|
|
3
|
+
------------------------------------------------------------------*/
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
/*-- Plan Container --*/
|
|
7
|
+
|
|
8
|
+
.plan-container {
|
|
9
|
+
position: relative;
|
|
10
|
+
float: left;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/*-- Plan --*/
|
|
14
|
+
|
|
15
|
+
.plan {
|
|
16
|
+
margin-right: 6px;
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
/*-- Plan Header --*/
|
|
23
|
+
|
|
24
|
+
.plan-header {
|
|
25
|
+
text-align: center;
|
|
26
|
+
color: #FFF;
|
|
27
|
+
|
|
28
|
+
background-color: #686868;
|
|
29
|
+
|
|
30
|
+
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
.plan-title {
|
|
35
|
+
padding: 10px 0;
|
|
36
|
+
|
|
37
|
+
font-size: 16px;
|
|
38
|
+
color: #FFF;
|
|
39
|
+
|
|
40
|
+
border-bottom: 1px solid #FFF;
|
|
41
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.plan-price {
|
|
47
|
+
padding: 20px 0 10px;
|
|
48
|
+
|
|
49
|
+
font-size: 66px;
|
|
50
|
+
line-height: 0.8em;
|
|
51
|
+
|
|
52
|
+
background-color: #797979;
|
|
53
|
+
|
|
54
|
+
border-top: 1px solid rgba(255, 255, 255, 0.2);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.plan-price span.term {
|
|
58
|
+
display: block;
|
|
59
|
+
margin-bottom: 0;
|
|
60
|
+
|
|
61
|
+
font-size: 13px;
|
|
62
|
+
line-height: 0;
|
|
63
|
+
padding: 2em 0 1em;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.plan-price span.note {
|
|
67
|
+
position: relative;
|
|
68
|
+
top: -40px;
|
|
69
|
+
|
|
70
|
+
display: inline;
|
|
71
|
+
|
|
72
|
+
font-size: 17px;
|
|
73
|
+
line-height: 0.8em;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
/*-- Plan Features --*/
|
|
79
|
+
|
|
80
|
+
.plan-features {
|
|
81
|
+
border: 1px solid #DDD;
|
|
82
|
+
border-bottom: none;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.plan-features {
|
|
86
|
+
padding-bottom: 1em;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.plan-features ul {
|
|
90
|
+
padding: 0;
|
|
91
|
+
margin: 0;
|
|
92
|
+
|
|
93
|
+
list-style: none;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.plan-features li {
|
|
97
|
+
padding: 1em 0;
|
|
98
|
+
margin: 0 2em;
|
|
99
|
+
|
|
100
|
+
text-align: center;
|
|
101
|
+
|
|
102
|
+
border-bottom: 1px dotted #CCC;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.plan-features li:last-child {
|
|
106
|
+
border-bottom: none;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
/*-- Plan Actions --*/
|
|
111
|
+
|
|
112
|
+
.plan-actions {
|
|
113
|
+
padding: 1.15em 0;
|
|
114
|
+
|
|
115
|
+
background: #F2F2F2;
|
|
116
|
+
|
|
117
|
+
background-color: whiteSmoke;
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
border: 1px solid #DDD;
|
|
121
|
+
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.plan-actions .btn {
|
|
125
|
+
padding: 1em 0;
|
|
126
|
+
margin: 0 2em;
|
|
127
|
+
|
|
128
|
+
display: block;
|
|
129
|
+
|
|
130
|
+
font-size: 16px;
|
|
131
|
+
font-weight: 600;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
/*-- Columns --*/
|
|
137
|
+
|
|
138
|
+
.pricing-plans.plans-1 .plan-container {
|
|
139
|
+
width: 100%;
|
|
140
|
+
}
|
|
141
|
+
.pricing-plans.plans-2 .plan-container {
|
|
142
|
+
width: 50%;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.pricing-plans.plans-3 .plan-container {
|
|
146
|
+
width: 33.33%;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.pricing-plans.plans-4 .plan-container {
|
|
150
|
+
width: 25%;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
/*-- Best Value Highlight --*/
|
|
161
|
+
|
|
162
|
+
.plan.best-value .plan-header {
|
|
163
|
+
background-color: #677E30;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.plan.best-value .plan-price {
|
|
167
|
+
background-color: #81994D;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
.plan.skyblue .plan-header {
|
|
177
|
+
background-color: #3D7AB8;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.plan.skyblue .plan-price {
|
|
181
|
+
background-color: #69C;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
.plan.lavendar .plan-header {
|
|
187
|
+
background-color: #754F75;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.plan.lavendar .plan-price {
|
|
191
|
+
background-color: #969;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
.plan.teal .plan-header {
|
|
197
|
+
background-color: #257272;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.plan.teal .plan-price {
|
|
201
|
+
background-color: #399;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
.plan.pink .plan-header {
|
|
208
|
+
background-color: #FF3778;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.plan.pink .plan-price {
|
|
212
|
+
background-color: #F69;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
.plan.black .plan-header {
|
|
222
|
+
background-color: #222;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.plan.black .plan-price {
|
|
226
|
+
background-color: #333;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
.plan.yellow .plan-header {
|
|
234
|
+
background-color: #C69E00;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.plan.yellow .plan-price {
|
|
238
|
+
background-color: #E8B900;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
.plan.purple .plan-header {
|
|
244
|
+
background-color: #4E2675;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.plan.purple .plan-price {
|
|
248
|
+
background-color: #639;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
.plan.red .plan-header {
|
|
256
|
+
background-color: #A40000;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.plan.red .plan-price {
|
|
260
|
+
background-color: #C00;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
.plan.orange .plan-header {
|
|
266
|
+
background-color: #D98200;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.plan.orange .plan-price {
|
|
270
|
+
background-color: #F90;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
.plan.blue .plan-header {
|
|
276
|
+
background-color: #0052A4;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.plan.blue .plan-price {
|
|
280
|
+
background-color: #06C;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
.plan.green .plan-header {
|
|
286
|
+
background-color: #00ba8b ;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.plan.green .plan-price {
|
|
290
|
+
background-color: #00ba8b ;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
/*------------------------------------------------------------------
|
|
298
|
+
[2. Min Width: 767px / Max Width: 979px]
|
|
299
|
+
*/
|
|
300
|
+
|
|
301
|
+
@media (min-width: 767px) and (max-width: 979px) {
|
|
302
|
+
|
|
303
|
+
.pricing-plans .plan-container {
|
|
304
|
+
width: 50% !important;
|
|
305
|
+
margin-bottom: 2em;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
@media (max-width: 767px) {
|
|
313
|
+
|
|
314
|
+
.pricing-plans .plan-container {
|
|
315
|
+
width: 100% !important;
|
|
316
|
+
margin-bottom: 2em;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
}
|