fones 0.1.0

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.
Files changed (97) hide show
  1. data/.document +5 -0
  2. data/.rspec +1 -0
  3. data/CHANGELOG.md +8 -0
  4. data/Gemfile +28 -0
  5. data/Gemfile.lock +108 -0
  6. data/LICENSE +20 -0
  7. data/README.md +61 -0
  8. data/Rakefile +54 -0
  9. data/VERSION +1 -0
  10. data/bin/fones +12 -0
  11. data/features/step_definitions/fones_steps.rb +38 -0
  12. data/features/support/env.rb +17 -0
  13. data/fones.gemspec +187 -0
  14. data/layouts/config/config.tt +19 -0
  15. data/layouts/default/css/_1030up.scss.erb +8 -0
  16. data/layouts/default/css/_1240up.scss.erb +8 -0
  17. data/layouts/default/css/_2x.scss.erb +40 -0
  18. data/layouts/default/css/_481up.scss.erb +109 -0
  19. data/layouts/default/css/_768up.scss.erb +280 -0
  20. data/layouts/default/css/_base.scss.erb +836 -0
  21. data/layouts/default/css/_grid.scss.erb +48 -0
  22. data/layouts/default/css/_header.scss.erb +18 -0
  23. data/layouts/default/css/_mixins.scss.erb +248 -0
  24. data/layouts/default/css/_normalize.scss.erb +536 -0
  25. data/layouts/default/css/_print.scss.erb +80 -0
  26. data/layouts/default/css/ie.scss.erb +52 -0
  27. data/layouts/default/css/login.scss.erb +65 -0
  28. data/layouts/default/css/style.css.scss.erb +111 -0
  29. data/layouts/default/functions/functions.php.erb +166 -0
  30. data/layouts/default/functions/library/admin.php.erb +131 -0
  31. data/layouts/default/functions/library/bones.php.erb +397 -0
  32. data/layouts/default/functions/library/custom-post-type.php.erb +122 -0
  33. data/layouts/default/functions/library/translation/README +18 -0
  34. data/layouts/default/functions/library/translation/da_DK.po +374 -0
  35. data/layouts/default/functions/library/translation/de_DE.po +385 -0
  36. data/layouts/default/functions/library/translation/default.po +372 -0
  37. data/layouts/default/functions/library/translation/es_ES.po +380 -0
  38. data/layouts/default/functions/library/translation/fr_FR.po +579 -0
  39. data/layouts/default/functions/library/translation/he_IL.po +382 -0
  40. data/layouts/default/functions/library/translation/hr.po +548 -0
  41. data/layouts/default/functions/library/translation/it_IT.po +376 -0
  42. data/layouts/default/functions/library/translation/ja.po +492 -0
  43. data/layouts/default/functions/library/translation/nb_NO.po +380 -0
  44. data/layouts/default/functions/library/translation/nl_NL.po +376 -0
  45. data/layouts/default/functions/library/translation/pl_PL.po +371 -0
  46. data/layouts/default/functions/library/translation/pt_PT.po +376 -0
  47. data/layouts/default/functions/library/translation/ru_RU.po +358 -0
  48. data/layouts/default/functions/library/translation/sv_SE.po +380 -0
  49. data/layouts/default/functions/library/translation/translation.php.erb +18 -0
  50. data/layouts/default/functions/library/translation/zh_CN.po +382 -0
  51. data/layouts/default/img/apple-icon-touch.png +0 -0
  52. data/layouts/default/img/custom-post-icon.png +0 -0
  53. data/layouts/default/img/favicon.ico +0 -0
  54. data/layouts/default/img/favicon.png +0 -0
  55. data/layouts/default/img/login-logo.png +0 -0
  56. data/layouts/default/img/nothing.gif +0 -0
  57. data/layouts/default/img/nothumb.gif +0 -0
  58. data/layouts/default/img/screenshot.png +0 -0
  59. data/layouts/default/img/win8-tile-icon.png +0 -0
  60. data/layouts/default/js/admin.js +1 -0
  61. data/layouts/default/js/libs/modernizr.custom.min.js +4 -0
  62. data/layouts/default/js/scripts.js +108 -0
  63. data/layouts/default/js/theme.js +2 -0
  64. data/layouts/default/templates/404.php.erb +43 -0
  65. data/layouts/default/templates/archive-custom_type.php.erb +73 -0
  66. data/layouts/default/templates/archive.php.erb +108 -0
  67. data/layouts/default/templates/attachment.php.erb +32 -0
  68. data/layouts/default/templates/comments.php.erb +121 -0
  69. data/layouts/default/templates/footer.php.erb +22 -0
  70. data/layouts/default/templates/header.php.erb +63 -0
  71. data/layouts/default/templates/index.php.erb +72 -0
  72. data/layouts/default/templates/page-custom.php.erb +66 -0
  73. data/layouts/default/templates/page.php.erb +60 -0
  74. data/layouts/default/templates/search.php.erb +71 -0
  75. data/layouts/default/templates/sidebar.php.erb +17 -0
  76. data/layouts/default/templates/single-custom_type.php.erb +78 -0
  77. data/layouts/default/templates/single.php.erb +61 -0
  78. data/layouts/default/templates/taxonomy-custom_cat.php.erb +87 -0
  79. data/lib/fones.rb +11 -0
  80. data/lib/forge/builder.rb +269 -0
  81. data/lib/forge/cli.rb +86 -0
  82. data/lib/forge/config.rb +61 -0
  83. data/lib/forge/engines.rb +12 -0
  84. data/lib/forge/error.rb +8 -0
  85. data/lib/forge/generator.rb +144 -0
  86. data/lib/forge/guard.rb +65 -0
  87. data/lib/forge/project.rb +162 -0
  88. data/lib/forge/version.rb +3 -0
  89. data/lib/guard/forge/assets.rb +31 -0
  90. data/lib/guard/forge/config.rb +34 -0
  91. data/lib/guard/forge/functions.rb +33 -0
  92. data/lib/guard/forge/templates.rb +28 -0
  93. data/pkg/fones-0.1.0.gem +0 -0
  94. data/spec/lib/forge/config_spec.rb +79 -0
  95. data/spec/lib/forge/project_spec.rb +34 -0
  96. data/spec/spec_helper.rb +13 -0
  97. metadata +437 -0
@@ -0,0 +1,836 @@
1
+ /******************************************************************
2
+
3
+ Stylesheet: Base Mobile Stylesheet
4
+
5
+ Be light and don't over style since everything here will be
6
+ loaded by mobile devices. You want to keep it as minimal as
7
+ possible. This is called at the top of the main stylsheet
8
+ and will be used across all viewports.
9
+
10
+ ******************************************************************/
11
+
12
+ /*********************
13
+ GENERAL STYLES
14
+ *********************/
15
+
16
+ body {
17
+ font-family: $serif;
18
+ font-size: 100%;
19
+ line-height: 1.5;
20
+ color: #565656;
21
+ }
22
+
23
+ /********************
24
+ WORDPRESS BODY CLASSES
25
+ style a page via class
26
+ ********************/
27
+
28
+ .rtl {} /* for sites that are read right to left (i.e. hebrew) */
29
+ .home {} /* home page */
30
+ .blog {} /* blog template page */
31
+ .archive {} /* archive page */
32
+ .date {} /* date archive page */
33
+ .date-paged-1 {} /* replace the number to the corresponding page number */
34
+ .search {} /* search page */
35
+ .search-results {} /* search result page */
36
+ .search-no-results {} /* no results search page */
37
+ .search-paged-1 {} /* individual paged search (i.e. body.search-paged-3) */
38
+ .error404 {} /* 404 page */
39
+ .single {} /* single post page */
40
+ .postid-1 {} /* individual post page by id (i.e. body.postid-73) */
41
+ .single-paged-1 {} /* individual paged single (i.e. body.single-paged-3) */
42
+ .attachment {} /* attatchment page */
43
+ .attachmentid-1 {} /* individual attatchment page (i.e. body.attachmentid-763) */
44
+ .attachment-mime-type {} /* style mime type pages */
45
+ .author {} /* author page */
46
+ .author-nicename {} /* user nicename (i.e. body.author-samueladams) */
47
+ .author-paged-1 {} /* paged author archives (i.e. body.author-paged-4) for page 4 */
48
+ .category {} /* category page */
49
+ .category-1 {} /* individual category page (i.e. body.category-6) */
50
+ .category-paged-1 {} /* replace the number to the corresponding page number */
51
+ .tag {} /* tag page */
52
+ .tag-slug {} /* individual tag page (i.e. body.tag-news) */
53
+ .tag-paged-1 {} /* replace the number to the corresponding page number */
54
+ .page-template {} /* custom page template page */
55
+ .page-template-page-php {} /* individual page template (i.e. body.page-template-contact-php */
56
+ .page-paged-1 {} /* replace the number to the corresponding page number */
57
+ .page-parent {} /* parent page template */
58
+ .page-child {} /* child page template */
59
+ .parent-pageid-1 {} /* replace the number to the corresponding page number */
60
+ .logged-in {} /* if user is logged in */
61
+ .paged {} /* paged items like search results or archives */
62
+ .paged-1 {} /* individual paged (i.e. body.paged-3) */
63
+
64
+ /*********************
65
+ LAYOUT & GRID STYLES
66
+ *********************/
67
+
68
+ .wrap {
69
+ width: 96%;
70
+ margin: 0 auto;
71
+ }
72
+
73
+ /*********************
74
+ LINK STYLES
75
+ *********************/
76
+
77
+ a, a:visited {
78
+ color: $link-color;
79
+
80
+ /* on hover */
81
+ &:hover, &:focus {
82
+ color: $link-hover;
83
+ }
84
+
85
+ /* on click */
86
+ &:active {
87
+
88
+ }
89
+
90
+ /* mobile tap color */
91
+ &:link {
92
+ /*
93
+ this highlights links on iPhones/iPads.
94
+ so it basically works like the :hover selector
95
+ for mobile devices.
96
+ */
97
+ -webkit-tap-highlight-color : rgba( 0, 0, 0, 0.3 );
98
+ }
99
+ }
100
+
101
+ /******************************************************************
102
+ H1, H2, H3, H4, H5 STYLES
103
+ ******************************************************************/
104
+
105
+ h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
106
+ font-family: $sans-serif;
107
+ text-rendering: optimizelegibility;
108
+ font-weight: 500;
109
+ /*
110
+ if you're going to use webfonts, be sure to check your weights
111
+ http://css-tricks.com/watch-your-font-weight/
112
+ */
113
+
114
+ /* removing text decoration from all headline links */
115
+ a {
116
+ text-decoration: none;
117
+ }
118
+ }
119
+
120
+ h1, .h1 {
121
+ font-size: 2.5em;
122
+ line-height: 1.333em;
123
+ }
124
+
125
+ h2, .h2 {
126
+ font-size: 1.75em;
127
+ line-height: 1.4em;
128
+ margin-bottom: 0.375em;
129
+ }
130
+
131
+ h3, .h3 {
132
+ font-size: 1.125em;
133
+ }
134
+
135
+ h4, .h4 {
136
+ font-size: 1.1em;
137
+ font-weight: 700;
138
+ }
139
+
140
+ h5, .h5 {
141
+ font-size: 0.846em;
142
+ line-height: 2.09em;
143
+ text-transform: uppercase;
144
+ letter-spacing: 2px;
145
+ }
146
+
147
+ /*********************
148
+ HEADER STYLES
149
+ *********************/
150
+
151
+ .header {}
152
+
153
+ #logo {}
154
+
155
+ /*********************
156
+ NAVIGATION STYLES
157
+ *********************/
158
+
159
+ /*
160
+ all navs have a .nav class applied via
161
+ the wp_menu function; this is so we can
162
+ easily write one group of styles for
163
+ the navs on the site so our css is cleaner
164
+ and more scalable.
165
+ */
166
+
167
+ .nav {
168
+ border: 1px solid #ccc;
169
+ border-bottom: 0;
170
+
171
+ li {
172
+
173
+ a {
174
+ display: block;
175
+ text-decoration: none;
176
+ padding: 10px 10px;
177
+ background-color: #eee;
178
+ border-bottom: 1px solid #ccc;
179
+
180
+ /*
181
+ remember this is for mobile ONLY, so there's no need
182
+ to even declare hover styles here, you can do it in
183
+ the style.scss file where it's relevant. We want to
184
+ keep this file as small as possible!
185
+ */
186
+ &:hover, &:focus {
187
+
188
+ }
189
+ }
190
+
191
+ &:first-child {}
192
+
193
+ &:last-child {}
194
+
195
+ /*
196
+ so you really have to rethink your dropdowns for mobile.
197
+ you don't want to have it expand too much because the
198
+ screen is so small. How you manage your menu should
199
+ depend on the project. Here's some great info on it:
200
+ http://www.alistapart.com/articles/organizing-mobile/
201
+ */
202
+ ul.sub-menu,
203
+ ul.children {
204
+
205
+ li {
206
+
207
+ a {
208
+ padding-left: 30px;
209
+
210
+ &:hover,
211
+ &:focus {}
212
+
213
+ &:link {}
214
+
215
+ }
216
+
217
+ &:first-child {}
218
+
219
+ &:last-child {}
220
+
221
+ }
222
+
223
+ }
224
+
225
+ } /* end .menu li */
226
+
227
+ /* highlight current page */
228
+ li.current-menu-item,
229
+ li.current_page_item,
230
+ li.current-page-ancestor {
231
+
232
+ a {}
233
+
234
+ } /* end current highlighters */
235
+
236
+ } /* end .nav */
237
+
238
+
239
+ /*********************
240
+ POSTS & CONTENT STYLES
241
+ *********************/
242
+
243
+ #content {
244
+ margin-top: 2.2em;
245
+ }
246
+
247
+ .hentry {
248
+
249
+ header {}
250
+
251
+ footer {}
252
+
253
+ } /* end .hentry */
254
+
255
+ .single-title,
256
+ .page-title {}
257
+
258
+ .single-title {}
259
+
260
+ .page-title {}
261
+
262
+ .archive-title { }
263
+
264
+ /* want to style individual post classes? Booya! */
265
+ .post-id {} /* post by id (i.e. post-3) */
266
+ .post {} /* general post style */
267
+ .page {} /* general article on a page style */
268
+ .attachment {} /* general style on an attatchment */
269
+ .sticky {} /* sticky post style */
270
+ .hentry {} /* hentry class */
271
+ .category-slug {} /* style by category (i.e. category-videos) */
272
+ .tag-slug {} /* style by tag (i.e. tag-news) */
273
+
274
+ /* post meta */
275
+ .byline {
276
+ color: #999;
277
+
278
+ time {}
279
+ }
280
+
281
+ /* entry content */
282
+ .entry-content {
283
+
284
+ p {}
285
+
286
+
287
+ ul, ol, table, dl {}
288
+
289
+ ul, ol {
290
+
291
+ li {}
292
+
293
+ }
294
+
295
+ ul {
296
+
297
+ li {}
298
+
299
+ }
300
+
301
+ ol {
302
+
303
+ li {}
304
+
305
+ }
306
+
307
+ blockquote {
308
+
309
+ &:before {}
310
+
311
+ }
312
+
313
+ dl {}
314
+
315
+ dt {}
316
+
317
+ dd {
318
+ margin-left: 0;
319
+ font-size: 0.9em;
320
+ color: #787878;
321
+ margin-bottom: 1.5em;
322
+ }
323
+
324
+ img {
325
+ margin: 0 0 1.5em 0;
326
+ max-width: 100%;
327
+ height: auto;
328
+ }
329
+
330
+ /*
331
+ image alignment on a screen this size may be
332
+ a bit difficult. It's set to start aligning
333
+ and floating images at the next breakpoint,
334
+ but it's up to you. Feel free to change it up.
335
+ */
336
+ .alignleft, img.alignleft {}
337
+ .alignright, img.alignright {}
338
+ .aligncenter, img.aligncenter {}
339
+
340
+ video, object {
341
+ max-width: 100%;
342
+ height: auto;
343
+ }
344
+
345
+ pre {
346
+ background: #eee;
347
+ border: 1px solid #cecece;
348
+ padding: 10px;
349
+ }
350
+
351
+ } /* end .entry-content */
352
+
353
+ .wp-caption {
354
+ max-width: 100%;
355
+ background: #eee;
356
+ padding: 5px;
357
+
358
+ /* images inside wp-caption */
359
+ img {
360
+ max-width: 100%;
361
+ margin-bottom: 0;
362
+ width: 100%;
363
+ }
364
+
365
+ p.wp-caption-text {
366
+ font-size: 0.85em;
367
+ margin: 4px 0 7px;
368
+ text-align: center;
369
+ }
370
+
371
+ } /* end .wp-caption */
372
+
373
+ /* image gallery styles */
374
+ .gallery {
375
+
376
+ dl {
377
+
378
+ a {}
379
+
380
+ img {}
381
+
382
+ }
383
+
384
+ dt {}
385
+
386
+ dd {}
387
+
388
+ } /* end .gallery */
389
+
390
+ /* gallery caption styles */
391
+ .gallery-caption {}
392
+
393
+ .size-full {}
394
+ .size-large {}
395
+ .size-medium {}
396
+ .size-thumbnail {}
397
+
398
+ /******************************************************************
399
+ PAGE NAVI STYLES
400
+ ******************************************************************/
401
+
402
+ .page-navigation,
403
+ .wp-prev-next {
404
+ margin: 1.1em 0 2.2em;
405
+ }
406
+ .bones_page_navi {
407
+
408
+ li {
409
+ float: left;
410
+ margin-left: 10px;
411
+
412
+ a {
413
+ padding: 3px 6px;
414
+ display: block;
415
+ text-decoration: none;
416
+ position: relative;
417
+
418
+ &:hover,
419
+ &:focus {
420
+ color: #f01d4f;
421
+ text-decoration: underline;
422
+ }
423
+ }
424
+
425
+ }
426
+
427
+ /* current page link */
428
+ li.bpn-current {
429
+ padding: 3px 6px;
430
+ border-bottom: 2px solid #f01d4f;
431
+ position: relative;
432
+
433
+ a {
434
+ /* hovering on current page link */
435
+ &:hover,
436
+ &:focus {}
437
+
438
+ }
439
+
440
+ } /* end .bones_page_navi .bpn-current */
441
+
442
+ /* common styles for page-navi links */
443
+ li.bpn-prev-link,
444
+ li.bpn-next-link {
445
+ font-weight: 700;
446
+
447
+ a {
448
+ padding: 0;
449
+ }
450
+ }
451
+
452
+ /* remove the bg on end links */
453
+ li.bpn-prev-link a:hover,
454
+ li.bpn-next-link a:hover,
455
+ li.bpn-first-page-link a:hover,
456
+ li.bpn-last-page-link a:hover {
457
+ background: none;
458
+ }
459
+
460
+ /* previous link */
461
+ li.bpn-prev-link {
462
+ a {
463
+ &:hover,
464
+ &:focus {}
465
+ }
466
+ }
467
+
468
+ /* next page link */
469
+ li.bpn-next-link {
470
+ a {
471
+ &:hover,
472
+ &:focus {}
473
+ }
474
+ }
475
+
476
+ /* first page link */
477
+ li.bpn-first-page-link {
478
+ a {
479
+ &:hover,
480
+ &:focus {}
481
+ }
482
+ }
483
+
484
+ /* last page link */
485
+ li.bpn-last-page-link {
486
+ a {
487
+ &:hover,
488
+ &:focus {}
489
+ }
490
+ }
491
+
492
+ } /* end .bones_page_navi */
493
+
494
+ /* fallback previous & next links */
495
+ .wp-prev-next {
496
+
497
+ ul {}
498
+
499
+ .prev-link {
500
+ float: left;
501
+ }
502
+
503
+ .next-link {
504
+ float: right;
505
+ }
506
+
507
+ } /* end .wp-prev-next */
508
+
509
+ /******************************************************************
510
+ COMMENT STYLES
511
+ ******************************************************************/
512
+
513
+ /* h3 comment title */
514
+ #comments {
515
+
516
+ /* number of comments span */
517
+ span {}
518
+
519
+ }
520
+
521
+ .comment-nav {
522
+
523
+ ul {
524
+
525
+ li {}
526
+
527
+ }
528
+ }
529
+
530
+
531
+ .commentlist {
532
+
533
+ li {
534
+ position: relative;
535
+ clear: both;
536
+ overflow: hidden;
537
+ list-style-type: none;
538
+ margin-bottom: 1.5em;
539
+ padding: 0.7335em 10px;
540
+
541
+ &:last-child {
542
+ margin-bottom: 0;
543
+ }
544
+
545
+ ul.children {
546
+ margin: 0;
547
+
548
+ li {}
549
+
550
+ /* variations */
551
+ .comment {}
552
+ .alt {}
553
+ .odd {}
554
+ .even {}
555
+ .depth-1 {} /* change number for different depth */
556
+ .byuser {}
557
+ .bypostauthor {}
558
+ .comment-author-admin {}
559
+
560
+ } /* end .commentlist li ul.children */
561
+ }
562
+
563
+ li[class*=depth-] {
564
+ margin-top: 1.1em;
565
+ }
566
+
567
+ li.depth-1 {
568
+ margin-left: 0;
569
+ margin-top: 0;
570
+ }
571
+
572
+ li:not(.depth-1) {
573
+ margin-right: -10px;
574
+ margin-left: -10px;
575
+ margin-top: 0;
576
+ padding-bottom: 0;
577
+ }
578
+
579
+ li.depth-2 {}
580
+ li.depth-3 {}
581
+ li.depth-4 {}
582
+ li.depth-5 {}
583
+
584
+ /* general comment classes */
585
+ .alt {}
586
+ .odd {
587
+ background: #eee;
588
+ }
589
+ .even {
590
+ background: #fefefe;
591
+ }
592
+ .parent {}
593
+ .comment {}
594
+ .children {}
595
+ .pingback {}
596
+ .bypostauthor {}
597
+ .comment-author {}
598
+ .comment-author-admin {}
599
+ .thread-alt {}
600
+ .thread-odd {}
601
+ .thread-even {}
602
+
603
+ /* vcard */
604
+ .vcard {
605
+ margin-left: 50px;
606
+
607
+ cite.fn {
608
+ font-weight: 700;
609
+ font-style: normal;
610
+
611
+ a.url {}
612
+
613
+ }
614
+
615
+ time {
616
+ float: right;
617
+
618
+ a {
619
+ color: #999;
620
+ text-decoration: none;
621
+
622
+ &:hover {
623
+ text-decoration: underline;
624
+ }
625
+
626
+ }
627
+
628
+ }
629
+
630
+ img.photo {}
631
+
632
+ img.avatar {
633
+ position: absolute;
634
+ left: 10px;
635
+ padding: 2px;
636
+ border: 1px solid #cecece;
637
+ background: #fff;
638
+ }
639
+
640
+ } /* end .commentlist .vcard */
641
+
642
+
643
+ /* comment meta */
644
+ .comment-meta {
645
+
646
+ a {}
647
+
648
+ }
649
+
650
+ .commentmetadata {
651
+
652
+ a {}
653
+
654
+ }
655
+
656
+ /* comment content */
657
+ .comment_content {
658
+ margin-left: 50px;
659
+
660
+ p {
661
+ margin: 0.7335em 0 1.5em;
662
+ font-size: 1em;
663
+ line-height: 1.5em;
664
+ }
665
+
666
+ } /* end .commentlist .comment_content */
667
+
668
+ /* comment reply link */
669
+ .comment-reply-link {
670
+ text-decoration: none;
671
+ float: right;
672
+ background: #4598bb;
673
+ padding: 3px 5px;
674
+ color: #fff;
675
+ opacity: 0.65;
676
+ margin-bottom: 10px;
677
+ font-weight: 700;
678
+ font-size: 0.9em;
679
+
680
+ &:hover,
681
+ &:focus {
682
+ opacity: 1;
683
+ }
684
+
685
+ } /* end .commentlist .comment-reply-link */
686
+
687
+ } /* end .commentlist */
688
+
689
+ /******************************************************************
690
+ COMMENT FORM STYLES
691
+ ******************************************************************/
692
+
693
+ .respond-form {
694
+ margin: 1.5em 10px;
695
+ padding-bottom: 2.2em;
696
+
697
+ form {
698
+ margin: 0.75em 0;
699
+
700
+ li {
701
+ list-style-type: none;
702
+ clear: both;
703
+ margin-bottom: 0.7335em;
704
+
705
+ label,
706
+ small {
707
+ display: none;
708
+ }
709
+ }
710
+
711
+ input[type=text],
712
+ input[type=email],
713
+ input[type=url],
714
+ textarea {
715
+ padding: 3px 6px;
716
+ background: #efefef;
717
+ border: 2px solid #cecece;
718
+ line-height: 1.5em;
719
+
720
+ &:focus {
721
+ background: #fff;
722
+ }
723
+
724
+ /* form validation */
725
+ &:invalid {
726
+ outline: none;
727
+ border-color: #fbc2c4;
728
+ background-color: #f6e7eb;
729
+ -webkit-box-shadow: none;
730
+ -moz-box-shadow: none;
731
+ -ms-box-shadow: none;
732
+ box-shadow: none;
733
+ }
734
+ }
735
+
736
+ input[type=text],
737
+ input[type=email],
738
+ input[type=url] {
739
+ max-width: 400px;
740
+ min-width: 250px;
741
+ }
742
+
743
+ textarea {
744
+ resize: none;
745
+ width: 97.3%;
746
+ height: 150px;
747
+ }
748
+
749
+ }
750
+ }
751
+
752
+ /* comment submit button */
753
+ #submit {}
754
+
755
+ /* comment form title */
756
+ #comment-form-title {
757
+ margin: 0 0 1.1em;
758
+ }
759
+
760
+ /* cancel comment reply link */
761
+ #cancel-comment-reply {
762
+ a {}
763
+ }
764
+
765
+ /* logged in comments */
766
+ .comments-logged-in-as {}
767
+
768
+ /* allowed tags */
769
+ #allowed_tags {
770
+ margin: 1.5em 10px 0.7335em 0;
771
+ }
772
+
773
+ /* no comments */
774
+ .nocomments {
775
+ margin: 0 20px 1.1em;
776
+ }
777
+
778
+ /*********************
779
+ SIDEBARS & ASIDES
780
+ *********************/
781
+
782
+ .sidebar {}
783
+
784
+ .widgettitle {}
785
+
786
+ .widget {
787
+
788
+ ul {
789
+
790
+ li {
791
+
792
+ &:first-child {}
793
+
794
+ &:last-child {}
795
+
796
+ a {}
797
+
798
+ /* deep nesting */
799
+ ul {}
800
+
801
+ }
802
+
803
+ }
804
+
805
+ }
806
+
807
+ /*********************
808
+ FOOTER STYLES
809
+ *********************/
810
+
811
+ .footer {
812
+ clear: both;
813
+ }
814
+
815
+ /*
816
+ if you checked out the link above:
817
+ http://www.alistapart.com/articles/organizing-mobile/
818
+ you'll want to style the footer nav
819
+ a bit more in-depth. Remember to keep
820
+ it simple because you'll have to
821
+ override these styles for the desktop
822
+ view.
823
+ */
824
+ .footer-links {
825
+
826
+ ul {
827
+
828
+ li {}
829
+
830
+ }
831
+
832
+ } /* end .footer-links */
833
+
834
+
835
+ .copyright {}
836
+