pondasee 1.5.1 → 2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. data/VERSION +1 -1
  2. data/templates/project/index.html +3 -4
  3. data/templates/project/js/plugins.js +17 -19
  4. data/templates/project/js/vendor/jquery-1.8.2.min.js +2 -0
  5. data/templates/project/js/vendor/modernizr-2.6.2.min.js +4 -0
  6. data/templates/project/manifest.rb +5 -22
  7. data/templates/project/sass/partials/_forms.scss +1 -301
  8. data/templates/project/sass/partials/_grid.scss +7 -5
  9. data/templates/project/sass/partials/_ie.scss +8 -0
  10. data/templates/project/sass/partials/_images.scss +3 -161
  11. data/templates/project/sass/partials/_main.scss +1 -10
  12. data/templates/project/sass/partials/_media-queries.scss +0 -18
  13. data/templates/project/sass/partials/_mixins.scss +19 -2
  14. data/templates/project/sass/partials/_plugins.scss +1 -2
  15. data/templates/project/sass/partials/_reset.scss +21 -27
  16. data/templates/project/sass/partials/_utilities.scss +32 -15
  17. data/templates/project/sass/partials/_variable.scss +5 -10
  18. data/templates/project/sass/partials/mixins/_fonts.scss +3 -13
  19. data/templates/project/sass/style.scss +17 -49
  20. data/templates/project/style.css +835 -0
  21. metadata +9 -25
  22. data/templates/project/fonts/fontawesome-webfont.eot +0 -0
  23. data/templates/project/fonts/fontawesome-webfont.svg +0 -255
  24. data/templates/project/fonts/fontawesome-webfont.ttf +0 -0
  25. data/templates/project/fonts/fontawesome-webfont.woff +0 -0
  26. data/templates/project/humans.txt +0 -42
  27. data/templates/project/img/button.png +0 -0
  28. data/templates/project/img/overlay-button.png +0 -0
  29. data/templates/project/img/select_arrow.gif +0 -0
  30. data/templates/project/js/vendor/jquery-1.7.2.min.js +0 -4
  31. data/templates/project/js/vendor/modernizr-2.6.1.min.js +0 -4
  32. data/templates/project/js/vendor/nwmatcher-1.2.5-min.js +0 -7
  33. data/templates/project/sass/partials/_font-awesome.scss +0 -299
  34. data/templates/project/sass/partials/main/_footer.scss +0 -10
  35. data/templates/project/sass/partials/main/_header.scss +0 -10
  36. data/templates/project/sass/partials/main/_menus.scss +0 -12
  37. data/templates/project/sass/partials/mixins/_zurb-button.scss +0 -105
  38. data/templates/project/sass/skins/default.scss +0 -11
  39. data/templates/project/skins/default.css +0 -3
@@ -0,0 +1,835 @@
1
+ /*
2
+ Theme Name: Pondasee
3
+ Theme URI:
4
+ Version: 2.0
5
+ Author: Satrya
6
+ Author URI: http://tokokoo.com
7
+ */
8
+ /*
9
+ Table of Contents
10
+ =============================================================================
11
+ 0 Reset Stylesheet
12
+ 1 Base
13
+ 2 Grid Layout
14
+ 3 Typography
15
+ 4 Form
16
+ 5 Table
17
+ 6 Images
18
+ 7 Main
19
+ 8 Utilities
20
+ 9 Plugins
21
+ 10 Media Queries
22
+ 11 Conditional IE class
23
+ =============================================================================
24
+ */
25
+ /* =============================================================================
26
+ - Reset Stylesheet
27
+ ============================================================================= */
28
+ body,
29
+ figure {
30
+ margin: 0;
31
+ }
32
+
33
+ article, aside, details, figcaption, figure, footer,
34
+ header, hgroup, nav, section, summary {
35
+ display: block;
36
+ }
37
+
38
+ audio, canvas, video {
39
+ display: -moz-inline-stack;
40
+ -moz-box-orient: vertical;
41
+ display: inline-block;
42
+ *display: inline;
43
+ vertical-align: top;
44
+ *zoom: 1;
45
+ }
46
+
47
+ audio:not([controls]),
48
+ [hidden] {
49
+ display: none;
50
+ height: 0;
51
+ }
52
+
53
+ a:focus {
54
+ outline: thin dotted;
55
+ }
56
+
57
+ a:active,
58
+ a:hover {
59
+ outline: 0;
60
+ }
61
+
62
+ q {
63
+ quotes: "\201C" "\201D" "\2018" "\2019";
64
+ }
65
+
66
+ img {
67
+ border: 0;
68
+ max-width: 100%;
69
+ -ms-interpolation-mode: bicubic;
70
+ }
71
+
72
+ svg:not(:root) {
73
+ overflow: hidden;
74
+ }
75
+
76
+ button::-moz-focus-inner,
77
+ input::-moz-focus-inner {
78
+ border: 0;
79
+ padding: 0;
80
+ }
81
+
82
+ button[disabled],
83
+ input[disabled] {
84
+ cursor: default;
85
+ }
86
+
87
+ input[type="radio"] {
88
+ vertical-align: text-bottom;
89
+ }
90
+
91
+ input[type="checkbox"] {
92
+ vertical-align: text-bottom;
93
+ }
94
+
95
+ table {
96
+ border-collapse: collapse;
97
+ border-spacing: 0;
98
+ }
99
+
100
+ /* =============================================================================
101
+ - Base
102
+ ============================================================================= */
103
+ * html {
104
+ font-size: 100%;
105
+ }
106
+
107
+ html {
108
+ font-size: 16px;
109
+ line-height: 1.5em;
110
+ overflow-y: scroll;
111
+ /* Keeps page centred in all browsers regardless of content height */
112
+ -ms-text-size-adjust: 100%;
113
+ /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
114
+ -webkit-text-size-adjust: 100%;
115
+ /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
116
+ -webkit-font-smoothing: antialiased;
117
+ /* http://maxvoltar.com/archive/-Webkit-font-smoothing */
118
+ }
119
+
120
+ body {
121
+ background: white;
122
+ color: #555555;
123
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
124
+ text-rendering: optimizeLegibility;
125
+ /* http://aestheticallyloyal.com/public/optimize-legibility/ */
126
+ }
127
+
128
+ /* SELECTION
129
+ ----------------- */
130
+ ::-moz-selection {
131
+ background: black;
132
+ color: white;
133
+ text-shadow: none;
134
+ }
135
+
136
+ ::selection {
137
+ background: black;
138
+ color: white;
139
+ text-shadow: none;
140
+ }
141
+
142
+ /* LINKS
143
+ ----------------- */
144
+ a {
145
+ color: #00baff;
146
+ text-decoration: none;
147
+ }
148
+ a:visited {
149
+ color: #00baff;
150
+ }
151
+ a:hover {
152
+ color: #0095cc;
153
+ text-decoration: none;
154
+ }
155
+ a:focus {
156
+ outline: thin dotted;
157
+ }
158
+
159
+ /* =============================================================================
160
+ - Grid Layout
161
+ ============================================================================= */
162
+ .container {
163
+ margin: 0 auto;
164
+ max-width: 930px;
165
+ width: 100%;
166
+ *zoom: 1;
167
+ }
168
+ .container:before, .container:after {
169
+ content: "";
170
+ display: table;
171
+ }
172
+ .container:after {
173
+ clear: both;
174
+ }
175
+
176
+ .row {
177
+ *zoom: 1;
178
+ }
179
+ .row:before, .row:after {
180
+ content: "";
181
+ display: table;
182
+ }
183
+ .row:after {
184
+ clear: both;
185
+ }
186
+ .row [class*="column"] {
187
+ -webkit-box-sizing: border-box;
188
+ -moz-box-sizing: border-box;
189
+ box-sizing: border-box;
190
+ display: inline;
191
+ float: left;
192
+ margin-left: 3.22581%;
193
+ *zoom: 1;
194
+ }
195
+ .row [class*="column"]:before, .row [class*="column"]:after {
196
+ content: "";
197
+ display: table;
198
+ }
199
+ .row [class*="column"]:after {
200
+ clear: both;
201
+ }
202
+ .row [class*="column"]:first-child {
203
+ margin-left: 0;
204
+ }
205
+
206
+ .row .col1 {
207
+ width: 3.22581%;
208
+ }
209
+
210
+ .row .col2 {
211
+ width: 9.67742%;
212
+ }
213
+
214
+ .row .col3 {
215
+ width: 16.12903%;
216
+ }
217
+
218
+ .row .col4 {
219
+ width: 22.58065%;
220
+ }
221
+
222
+ .row .col5 {
223
+ width: 29.03226%;
224
+ }
225
+
226
+ .row .col6 {
227
+ width: 35.48387%;
228
+ }
229
+
230
+ .row .col7 {
231
+ width: 41.93548%;
232
+ }
233
+
234
+ .row .col8 {
235
+ width: 48.3871%;
236
+ }
237
+
238
+ .row .col9 {
239
+ width: 54.83871%;
240
+ }
241
+
242
+ .row .col10 {
243
+ width: 61.29032%;
244
+ }
245
+
246
+ .row .col11 {
247
+ width: 67.74194%;
248
+ }
249
+
250
+ .row .col12 {
251
+ width: 74.19355%;
252
+ }
253
+
254
+ .row .col13 {
255
+ width: 80.64516%;
256
+ }
257
+
258
+ .row .col14 {
259
+ width: 87.09677%;
260
+ }
261
+
262
+ .row .col15 {
263
+ width: 93.54839%;
264
+ }
265
+
266
+ .row .col16 {
267
+ width: 100%;
268
+ }
269
+
270
+ /* =============================================================================
271
+ - Typography
272
+ ============================================================================= */
273
+ /* HEADING
274
+ ----------------- */
275
+ h1, h2, h3, h4, h5, h6 {
276
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
277
+ font-weight: bold;
278
+ }
279
+
280
+ h1 {
281
+ font-size: 36px;
282
+ line-height: 1.3em;
283
+ }
284
+
285
+ h2 {
286
+ font-size: 24px;
287
+ line-height: 1.3em;
288
+ }
289
+
290
+ h3 {
291
+ font-size: 18px;
292
+ line-height: 1.5em;
293
+ }
294
+
295
+ h4 {
296
+ font-size: 16px;
297
+ line-height: 1.5em;
298
+ }
299
+
300
+ h5 {
301
+ font-size: 14px;
302
+ line-height: 1.5em;
303
+ }
304
+
305
+ h6 {
306
+ font-size: 14px;
307
+ line-height: 1.5em;
308
+ }
309
+
310
+ /* TEXT ELEMENT
311
+ ----------------- */
312
+ p {
313
+ margin: 0 0 1.5em;
314
+ }
315
+
316
+ em {
317
+ font-style: italic;
318
+ }
319
+
320
+ b,
321
+ strong {
322
+ font-weight: bold;
323
+ }
324
+
325
+ small {
326
+ font-size: 85%;
327
+ }
328
+
329
+ cite {
330
+ font-style: normal;
331
+ }
332
+
333
+ dfn {
334
+ font-style: italic;
335
+ font-weight: bold;
336
+ }
337
+
338
+ sub,
339
+ sup {
340
+ font-size: 75%;
341
+ line-height: 0;
342
+ position: relative;
343
+ }
344
+
345
+ sup {
346
+ top: -0.5em;
347
+ vertical-align: sub;
348
+ }
349
+
350
+ sub {
351
+ bottom: -0.25em;
352
+ vertical-align: super;
353
+ }
354
+
355
+ abbr,
356
+ acronym {
357
+ font-size: 90%;
358
+ text-transform: uppercase;
359
+ border-bottom: 1px dotted #dddddd;
360
+ cursor: help;
361
+ }
362
+
363
+ del {
364
+ color: #aaaaaa;
365
+ text-decoration: line-through;
366
+ vertical-align: baseline;
367
+ }
368
+
369
+ pre {
370
+ background: #ffff99;
371
+ border-bottom: 1px solid #ff2;
372
+ border-top: 1px solid #ff2;
373
+ color: #990;
374
+ margin: 1.5em 0;
375
+ padding: 0.75em 0.45em;
376
+ white-space: pre;
377
+ white-space: pre-wrap;
378
+ white-space: pre-line;
379
+ white-space: -pre-wrap;
380
+ white-space: -o-pre-wrap;
381
+ white-space: -moz-pre-wrap;
382
+ white-space: -hp-pre-wrap;
383
+ word-wrap: break-word;
384
+ }
385
+
386
+ code {
387
+ background: #ffff99;
388
+ color: #990;
389
+ font-size: 11px;
390
+ line-height: 1.2em;
391
+ padding: 0.3em;
392
+ }
393
+
394
+ pre,
395
+ code,
396
+ kbd,
397
+ samp,
398
+ tt {
399
+ font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
400
+ }
401
+
402
+ ins {
403
+ text-decoration: underline;
404
+ }
405
+
406
+ mark {
407
+ background: #ff0;
408
+ color: #990;
409
+ font-size: 11px;
410
+ }
411
+
412
+ /* BLOCKQUOTE
413
+ ----------------- */
414
+ blockquote {
415
+ border-left: 3px solid #eeeeee;
416
+ color: #aaaaaa;
417
+ font-style: italic;
418
+ font-family: Georgia, Palatino, "Palatino Linotype", Times, "Times New Roman", serif;
419
+ margin: 1em 40px;
420
+ padding-left: 1.35em;
421
+ }
422
+ blockquote em,
423
+ blockquote i,
424
+ blockquote cite {
425
+ font-style: normal;
426
+ }
427
+ blockquote cite {
428
+ color: #555555;
429
+ display: block;
430
+ padding: 10px 0 0 20px;
431
+ position: relative;
432
+ }
433
+ blockquote cite:before {
434
+ content: '\2014';
435
+ left: 0;
436
+ position: absolute;
437
+ }
438
+
439
+ q:before,
440
+ q:after,
441
+ blockquote:before,
442
+ blockquote:after {
443
+ content: "";
444
+ }
445
+
446
+ address {
447
+ display: block;
448
+ margin: 0 0 1.5em;
449
+ font-style: italic;
450
+ }
451
+
452
+ /* LISTS
453
+ ----------------- */
454
+ ul,
455
+ ol {
456
+ margin: 1em 0;
457
+ padding: 0 0 0 2.25em;
458
+ }
459
+
460
+ ul {
461
+ list-style: disc;
462
+ }
463
+
464
+ ol {
465
+ list-style-type: decimal;
466
+ }
467
+
468
+ ol ol {
469
+ list-style: upper-alpha;
470
+ }
471
+
472
+ ol ol ol {
473
+ list-style: lower-roman;
474
+ }
475
+
476
+ ol ol ol ol {
477
+ list-style: lower-alpha;
478
+ }
479
+
480
+ li ul,
481
+ li ol {
482
+ margin: 0;
483
+ }
484
+
485
+ dl {
486
+ margin: 0 1.625em;
487
+ }
488
+
489
+ dt {
490
+ font-weight: bold;
491
+ }
492
+
493
+ dd {
494
+ margin-bottom: 1.625em;
495
+ }
496
+
497
+ /* =============================================================================
498
+ - Form
499
+ ============================================================================= */
500
+ /* BASE FORM STYLES
501
+ ----------------- */
502
+ label {
503
+ font-weight: bold;
504
+ font-size: 12px;
505
+ }
506
+
507
+ fieldset {
508
+ border: 1px solid #dddddd;
509
+ font-size: 12px;
510
+ line-height: 1.3em;
511
+ margin: 0 0 1.5em;
512
+ padding: 0 1.4em 1.4em 1.4em;
513
+ }
514
+
515
+ legend {
516
+ background: whitesmoke;
517
+ border: 1px solid #dddddd;
518
+ -webkit-border-radius: 5px;
519
+ -moz-border-radius: 5px;
520
+ border-radius: 5px;
521
+ font-weight: bold;
522
+ display: block;
523
+ left: 0;
524
+ margin: 0;
525
+ padding: 0.3em 1.2em;
526
+ position: relative;
527
+ text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
528
+ top: 0;
529
+ }
530
+
531
+ fieldset {
532
+ padding-top: 1.4em;
533
+ }
534
+
535
+ legend {
536
+ margin-top: 0;
537
+ margin-bottom: 0;
538
+ }
539
+
540
+ textarea {
541
+ min-height: 40px;
542
+ overflow: auto;
543
+ resize: vertical;
544
+ width: 100%;
545
+ }
546
+
547
+ /* =============================================================================
548
+ - Table
549
+ ============================================================================= */
550
+ /* STANDARD TABLE
551
+ ----------------- */
552
+ table {
553
+ font-size: 12px;
554
+ max-width: 100%;
555
+ width: 100%;
556
+ }
557
+
558
+ table,
559
+ td {
560
+ border: 1px solid #e8e8e8;
561
+ border-collapse: collapse;
562
+ margin: 1.5em 0;
563
+ padding: 5px 10px;
564
+ }
565
+
566
+ th {
567
+ background-color: #e8e8e8;
568
+ border-right: 1px solid #e0e0e0;
569
+ color: #666;
570
+ margin: 5px 0 10px;
571
+ padding: 5px 10px;
572
+ text-transform: uppercase;
573
+ text-align: left;
574
+ }
575
+
576
+ table button,
577
+ table input {
578
+ *overflow: auto;
579
+ }
580
+
581
+ /* STRIPE TABLE
582
+ ----------------- */
583
+ table.striped tr:nth-child(odd) {
584
+ background-color: #f9f9f9;
585
+ }
586
+
587
+ /* =============================================================================
588
+ - Images
589
+ ============================================================================= */
590
+ img {
591
+ height: auto;
592
+ }
593
+
594
+ embed,
595
+ iframe,
596
+ object {
597
+ max-width: 100%;
598
+ width: 100%;
599
+ }
600
+
601
+ /* =============================================================================
602
+ - Main
603
+ ============================================================================= */
604
+ /* =============================================================================
605
+ - Utilities
606
+ ============================================================================= */
607
+ /* CLEARFIX
608
+ http://nicolasgallagher.com/micro-clearfix-hack/
609
+ ----------------- */
610
+ .clearfix {
611
+ *zoom: 1;
612
+ }
613
+ .clearfix:before, .clearfix:after {
614
+ content: "";
615
+ display: table;
616
+ }
617
+ .clearfix:after {
618
+ clear: both;
619
+ }
620
+
621
+ /* CLEAR ELEMENT
622
+ ----------------- */
623
+ .clear {
624
+ clear: both;
625
+ display: block;
626
+ overflow: hidden;
627
+ visibility: hidden;
628
+ width: 0;
629
+ height: 0;
630
+ }
631
+
632
+ /* Inline-Block
633
+ -------------------- */
634
+ .iblock {
635
+ display: -moz-inline-stack;
636
+ -moz-box-orient: vertical;
637
+ display: inline-block;
638
+ *display: inline;
639
+ vertical-align: top;
640
+ *zoom: 1;
641
+ }
642
+
643
+ /* Break text
644
+ -------------------- */
645
+ .break {
646
+ word-break: break-all;
647
+ word-break: break-word;
648
+ word-wrap: break-word;
649
+ }
650
+
651
+ /* Truncate text
652
+ -------------------- */
653
+ .truncate {
654
+ max-width: 100%;
655
+ overflow: hidden;
656
+ text-overflow: ellipsis;
657
+ white-space: nowrap;
658
+ word-wrap: normal;
659
+ }
660
+
661
+ /* Hide text
662
+ -------------------- */
663
+ .hide-text {
664
+ overflow: hidden;
665
+ text-align: left;
666
+ text-indent: -119988px;
667
+ }
668
+
669
+ /* IMAGE REPLACEMENT
670
+ ----------------- */
671
+ .ir {
672
+ border: 0;
673
+ font: 0/0 a;
674
+ text-shadow: none;
675
+ color: transparent;
676
+ background-color: transparent;
677
+ }
678
+
679
+ /* HIDE/SHOW ELEMENT
680
+ ----------------- */
681
+ .hide {
682
+ display: none;
683
+ visibility: hidden;
684
+ }
685
+
686
+ .show {
687
+ display: block;
688
+ visibility: visible;
689
+ }
690
+
691
+ .invisible {
692
+ visibility: hidden;
693
+ }
694
+
695
+ .visuallyhidden {
696
+ border: 0;
697
+ clip: rect(0 0 0 0);
698
+ height: 1px;
699
+ margin: -1px;
700
+ overflow: hidden;
701
+ padding: 0;
702
+ position: absolute;
703
+ width: 1px;
704
+ }
705
+
706
+ .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
707
+ clip: auto;
708
+ height: auto;
709
+ margin: 0;
710
+ overflow: visible;
711
+ position: static;
712
+ width: auto;
713
+ }
714
+
715
+ /* FLOATING ALIGNMENT
716
+ ----------------- */
717
+ .alignleft {
718
+ display: inline;
719
+ float: left;
720
+ margin-right: 1.5em;
721
+ }
722
+
723
+ .alignright {
724
+ display: inline;
725
+ float: right;
726
+ margin-left: 1.5em;
727
+ }
728
+
729
+ .aligncenter {
730
+ clear: both;
731
+ display: block;
732
+ margin-left: auto;
733
+ margin-right: auto;
734
+ }
735
+
736
+ .alignnone {
737
+ display: block;
738
+ }
739
+
740
+ /* QUICK FLOAT
741
+ ----------------- */
742
+ .fr {
743
+ display: inline;
744
+ float: right;
745
+ }
746
+
747
+ .fl {
748
+ display: inline;
749
+ float: left;
750
+ }
751
+
752
+ .fn {
753
+ float: none;
754
+ display: block;
755
+ }
756
+
757
+ /* TEXT ALIGNMENT
758
+ ----------------- */
759
+ .left {
760
+ text-align: left;
761
+ }
762
+
763
+ .right {
764
+ text-align: right;
765
+ }
766
+
767
+ .center {
768
+ text-align: center;
769
+ }
770
+
771
+ /* HR/STANDALONE BORDER
772
+ ----------------- */
773
+ hr {
774
+ border-top: 1px solid #eeeeee;
775
+ border-bottom: 0;
776
+ border-right: 0;
777
+ border-left: 0;
778
+ clear: both;
779
+ height: 1px;
780
+ margin: 1.5em 0;
781
+ min-height: 0;
782
+ }
783
+ hr.dotted {
784
+ border-style: dotted;
785
+ }
786
+ hr.dashed {
787
+ border-style: dashed;
788
+ }
789
+ hr.darkborder {
790
+ border-color: black;
791
+ }
792
+ hr.lightborder {
793
+ border-color: white;
794
+ }
795
+
796
+ /* POSITIONING
797
+ ----------------- */
798
+ .first {
799
+ margin-left: 0;
800
+ padding-left: 0;
801
+ }
802
+
803
+ .last {
804
+ margin-right: 0;
805
+ padding-right: 0;
806
+ }
807
+
808
+ .top {
809
+ margin-top: 0;
810
+ padding-top: 0;
811
+ }
812
+
813
+ .bottom {
814
+ margin-bottom: 0;
815
+ padding-bottom: 0;
816
+ }
817
+
818
+ /* Text meant only for screen readers
819
+ ----------------- */
820
+ .assistive-text {
821
+ clip: rect(1px 1px 1px 1px);
822
+ /* IE6, IE7 */
823
+ clip: rect(1px, 1px, 1px, 1px);
824
+ position: absolute !important;
825
+ }
826
+
827
+ /* =============================================================================
828
+ - Plugins
829
+ ============================================================================= */
830
+ /* =============================================================================
831
+ - Media Queries
832
+ ============================================================================= */
833
+ /* =============================================================================
834
+ - Conditional IE class
835
+ ============================================================================= */