skyframe 0.0.1.beta

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 (111) hide show
  1. data/lib/skyframe.rb +8 -0
  2. data/lib/skyframe/version.rb +3 -0
  3. data/stylesheets/_main.scss +1 -0
  4. data/templates/project/files/404.html +157 -0
  5. data/templates/project/files/CHANGELOG.md +19 -0
  6. data/templates/project/files/about.html +96 -0
  7. data/templates/project/files/apple-touch-icon-114x114-precomposed.png +0 -0
  8. data/templates/project/files/apple-touch-icon-144x144-precomposed.png +0 -0
  9. data/templates/project/files/apple-touch-icon-57x57-precomposed.png +0 -0
  10. data/templates/project/files/apple-touch-icon-72x72-precomposed.png +0 -0
  11. data/templates/project/files/apple-touch-icon-precomposed.png +0 -0
  12. data/templates/project/files/apple-touch-icon.png +0 -0
  13. data/templates/project/files/bg_direction_nav.png +0 -0
  14. data/templates/project/files/blog-details.html +255 -0
  15. data/templates/project/files/blog.html +157 -0
  16. data/templates/project/files/config.rb +28 -0
  17. data/templates/project/files/contact.html +158 -0
  18. data/templates/project/files/crossdomain.xml +15 -0
  19. data/templates/project/files/dummy-full.png +0 -0
  20. data/templates/project/files/dummy-square.png +0 -0
  21. data/templates/project/files/favicon.ico +0 -0
  22. data/templates/project/files/flash/video-js.swf +0 -0
  23. data/templates/project/files/forgot-password.html +101 -0
  24. data/templates/project/files/htaccess.txt +536 -0
  25. data/templates/project/files/humans.txt +18 -0
  26. data/templates/project/files/icon-gmap.png +0 -0
  27. data/templates/project/files/icon-search.png +0 -0
  28. data/templates/project/files/inc/breadcrumb.html +5 -0
  29. data/templates/project/files/inc/footer.html +37 -0
  30. data/templates/project/files/inc/header.html +20 -0
  31. data/templates/project/files/inc/js-bottom.html +21 -0
  32. data/templates/project/files/inc/js-top.html +10 -0
  33. data/templates/project/files/inc/main-nav.html +7 -0
  34. data/templates/project/files/logo.png +0 -0
  35. data/templates/project/files/logo@2x.png +0 -0
  36. data/templates/project/files/media/audio/dummy-audio.mp3 +0 -0
  37. data/templates/project/files/media/video/dummy-video.mp4 +0 -0
  38. data/templates/project/files/products.html +100 -0
  39. data/templates/project/files/readme.md +55 -0
  40. data/templates/project/files/robots.txt +3 -0
  41. data/templates/project/files/services.html +75 -0
  42. data/templates/project/files/sign-in.html +104 -0
  43. data/templates/project/files/sitemap.html +102 -0
  44. data/templates/project/files/video-js.png +0 -0
  45. data/templates/project/javascripts/libs/jquery-1.8.0.min.js +2 -0
  46. data/templates/project/javascripts/libs/jquery.validationEngine.js +1819 -0
  47. data/templates/project/javascripts/libs/languages/jquery.validationEngine-cz.js +156 -0
  48. data/templates/project/javascripts/libs/languages/jquery.validationEngine-da.js +135 -0
  49. data/templates/project/javascripts/libs/languages/jquery.validationEngine-de.js +139 -0
  50. data/templates/project/javascripts/libs/languages/jquery.validationEngine-en.js +192 -0
  51. data/templates/project/javascripts/libs/languages/jquery.validationEngine-es.js +137 -0
  52. data/templates/project/javascripts/libs/languages/jquery.validationEngine-et.js +139 -0
  53. data/templates/project/javascripts/libs/languages/jquery.validationEngine-fa.js +181 -0
  54. data/templates/project/javascripts/libs/languages/jquery.validationEngine-fi.js +111 -0
  55. data/templates/project/javascripts/libs/languages/jquery.validationEngine-fr.js +129 -0
  56. data/templates/project/javascripts/libs/languages/jquery.validationEngine-hr.js +177 -0
  57. data/templates/project/javascripts/libs/languages/jquery.validationEngine-hu.js +179 -0
  58. data/templates/project/javascripts/libs/languages/jquery.validationEngine-it.js +111 -0
  59. data/templates/project/javascripts/libs/languages/jquery.validationEngine-ja.js +149 -0
  60. data/templates/project/javascripts/libs/languages/jquery.validationEngine-nl.js +136 -0
  61. data/templates/project/javascripts/libs/languages/jquery.validationEngine-pl.js +140 -0
  62. data/templates/project/javascripts/libs/languages/jquery.validationEngine-pt.js +135 -0
  63. data/templates/project/javascripts/libs/languages/jquery.validationEngine-pt_BR.js +127 -0
  64. data/templates/project/javascripts/libs/languages/jquery.validationEngine-ro.js +177 -0
  65. data/templates/project/javascripts/libs/languages/jquery.validationEngine-ru.js +136 -0
  66. data/templates/project/javascripts/libs/languages/jquery.validationEngine-se.js +153 -0
  67. data/templates/project/javascripts/libs/languages/jquery.validationEngine-tr.js +156 -0
  68. data/templates/project/javascripts/libs/languages/jquery.validationEngine-vi.js +179 -0
  69. data/templates/project/javascripts/libs/languages/jquery.validationEngine-zh_CN.js +177 -0
  70. data/templates/project/javascripts/libs/languages/jquery.validationEngine-zh_TW.js +177 -0
  71. data/templates/project/javascripts/libs/modernizr-2.5.3.min.js +4 -0
  72. data/templates/project/javascripts/libs/respond.min.js +6 -0
  73. data/templates/project/javascripts/libs/selectivizr.js +560 -0
  74. data/templates/project/javascripts/plugins.js +83 -0
  75. data/templates/project/javascripts/script.js +282 -0
  76. data/templates/project/manifest.rb +136 -0
  77. data/templates/project/partials/_debug.scss +114 -0
  78. data/templates/project/partials/_functions.scss +10 -0
  79. data/templates/project/partials/_helpers.scss +86 -0
  80. data/templates/project/partials/_layout.scss +188 -0
  81. data/templates/project/partials/_media.scss +191 -0
  82. data/templates/project/partials/_misc.scss +103 -0
  83. data/templates/project/partials/_mixins.scss +140 -0
  84. data/templates/project/partials/_mods.scss +59 -0
  85. data/templates/project/partials/_normalize.scss +36 -0
  86. data/templates/project/partials/_print.scss +80 -0
  87. data/templates/project/partials/_type.scss +331 -0
  88. data/templates/project/partials/_vars.scss +114 -0
  89. data/templates/project/partials/mods/_mod-block.scss +96 -0
  90. data/templates/project/partials/mods/_mod-breadcrumb.scss +103 -0
  91. data/templates/project/partials/mods/_mod-carousel.scss +108 -0
  92. data/templates/project/partials/mods/_mod-footer.scss +199 -0
  93. data/templates/project/partials/mods/_mod-form.scss +319 -0
  94. data/templates/project/partials/mods/_mod-header.scss +291 -0
  95. data/templates/project/partials/mods/_mod-intro.scss +98 -0
  96. data/templates/project/partials/mods/_mod-layouts.scss +135 -0
  97. data/templates/project/partials/mods/_mod-main-nav.scss +143 -0
  98. data/templates/project/partials/mods/_mod-map.scss +107 -0
  99. data/templates/project/partials/mods/_mod-msg.scss +119 -0
  100. data/templates/project/partials/mods/_mod-paging.scss +101 -0
  101. data/templates/project/partials/mods/_mod-sitemap.scss +132 -0
  102. data/templates/project/partials/mods/_mod-split-form.scss +98 -0
  103. data/templates/project/partials/mods/_mod-strip.scss +118 -0
  104. data/templates/project/partials/mods/_mod-table.scss +118 -0
  105. data/templates/project/partials/mods/_mod-widget.scss +103 -0
  106. data/templates/project/partials/plugins/_flexslider.scss +82 -0
  107. data/templates/project/partials/plugins/_validation-engine.scss +137 -0
  108. data/templates/project/partials/plugins/_video-js.scss +616 -0
  109. data/templates/project/partials/sass-template.scss +103 -0
  110. data/templates/project/screen.scss +2 -0
  111. metadata +220 -0
@@ -0,0 +1,103 @@
1
+ /*----------------------------------------------------------------------------
2
+ 888888 Yb dP 888888 888888 88b 88 8888b.
3
+ 88__ YbdP 88 88__ 88Yb88 8I Yb
4
+ 88"" dPYb 88 88"" 88 Y88 8I dY
5
+ 888888 dP Yb 88 888888 88 Y8 8888Y"
6
+ ------------------------------------------------------------------------------
7
+ Extend classes. These are classes should not in your HTML markup.
8
+ These class should be reused in this module for neatness.
9
+ ----------------------------------------------------------------------------*/
10
+
11
+ /* ===========================================================================
12
+ Comment
13
+ ======================================================================== */
14
+
15
+
16
+ /*----------------------------------------------------------------------------
17
+ 8888b. 888888 888888 db 88 88 88 888888 .dP"Y8 888888 Yb dP 88 888888 .dP"Y8
18
+ 8I Yb 88__ 88__ dPYb 88 88 88 88 `Ybo." 88 YbdP 88 88__ `Ybo."
19
+ 8I dY 88"" 88"" dP__Yb Y8 8P 88 .o 88 o.`Y8b 88 8P 88 .o 88"" o.`Y8b
20
+ 8888Y" 888888 88 dP""""Yb `YbodP' 88ood8 88 8bodP' 88 dP 88ood8 888888 8bodP'
21
+ ------------------------------------------------------------------------------
22
+ Default style
23
+ ----------------------------------------------------------------------------*/
24
+
25
+ /* ==========================================================================
26
+ Chrome Frame prompt
27
+ ========================================================================== */
28
+
29
+ .chromeframe {
30
+ margin: 0.2em 0;
31
+ background: #ccc;
32
+ color: #000;
33
+ padding: 0.2em 0;
34
+ }
35
+
36
+
37
+
38
+ /*----------------------------------------------------------------------------
39
+ 8b d8 888888 8888b. 88 db dP"Yb 88 88 888888 88""Yb Yb dP 8b d8 dP"Yb 88""Yb 88 88 888888
40
+ 88b d88 88__ 8I Yb 88 dPYb dP Yb 88 88 88__ 88__dP YbdP ________ 88b d88 dP Yb 88__dP 88 88 88__
41
+ 88YbdP88 88"" 8I dY 88 dP__Yb Yb b dP Y8 8P 88"" 88"Yb 8P """""""" 88YbdP88 Yb dP 88""Yb 88 88 .o 88""
42
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 88 YY 88 YbodP 88oodP 88 88ood8 888888
43
+ ------------------------------------------------------------------------------
44
+ Mobile
45
+ ---------------------------------------------------------------------------*/
46
+ @media only screen and (min-width: $mq-mob-min) and (max-width: $mq-mob-max){
47
+
48
+ /* ===========================================================================
49
+ Comment
50
+ ======================================================================== */
51
+
52
+
53
+
54
+ }// /@media mob
55
+
56
+
57
+ /*----------------------------------------------------------------------------
58
+ 8b d8 888888 8888b. 88 db dP"Yb 88 88 888888 88""Yb Yb dP 888888 db 88""Yb 88 888888 888888
59
+ 88b d88 88__ 8I Yb 88 dPYb dP Yb 88 88 88__ 88__dP YbdP ________ 88 dPYb 88__dP 88 88__ 88
60
+ 88YbdP88 88"" 8I dY 88 dP__Yb Yb b dP Y8 8P 88"" 88"Yb 8P """""""" 88 dP__Yb 88""Yb 88 .o 88"" 88
61
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 88 dP""""Yb 88oodP 88ood8 888888 88
62
+ ------------------------------------------------------------------------------
63
+ Tablet
64
+ ----------------------------------------------------------------------------*/
65
+ @media only screen and (min-width: $mq-tab-min) and (max-width: $mq-tab-max){
66
+
67
+ /* ===========================================================================
68
+ Comment
69
+ ======================================================================== */
70
+
71
+
72
+
73
+ }// /@media tab
74
+
75
+ /*----------------------------------------------------------------------------
76
+ 8b d8 888888 8888b. 88 db dP"Yb 88 88 888888 88""Yb Yb dP 8888b. 888888 .dP"Y8 88 dP 888888 dP"Yb 88""Yb
77
+ 88b d88 88__ 8I Yb 88 dPYb dP Yb 88 88 88__ 88__dP YbdP ________ 8I Yb 88__ `Ybo." 88odP 88 dP Yb 88__dP
78
+ 88YbdP88 88"" 8I dY 88 dP__Yb Yb b dP Y8 8P 88"" 88"Yb 8P """""""" 8I dY 88"" o.`Y8b 88"Yb 88 Yb dP 88"""
79
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 8888Y" 888888 8bodP' 88 Yb 88 YbodP 88
80
+ ------------------------------------------------------------------------------
81
+ Desktop
82
+ ----------------------------------------------------------------------------*/
83
+ @media only screen and (min-width: $mq-dsk-min){
84
+
85
+ /* ===========================================================================
86
+ Comment
87
+ ======================================================================== */
88
+
89
+ }// /@media dsk
90
+
91
+
92
+
93
+ /*----------------------------------------------------------------------------
94
+ 88""Yb 888888 888888 88 88b 88 db
95
+ 88__dP 88__ 88 88 88Yb88 dPYb
96
+ 88"Yb 88"" 88 88 88 Y88 dP__Yb
97
+ 88 Yb 888888 88 88 88 Y8 dP""""Yb
98
+ ------------------------------------------------------------------------------
99
+ Retina
100
+ ----------------------------------------------------------------------------*/
101
+ @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (max--moz-device-pixel-ratio: 2) {
102
+
103
+ }
@@ -0,0 +1,140 @@
1
+ /*
2
+ ------------------------------------------------------------------------------
3
+ 8b d8 88 Yb dP 88 88b 88 .dP"Y8
4
+ 88b d88 88 YbdP 88 88Yb88 `Ybo."
5
+ 88YbdP88 88 dPYb 88 88 Y88 o.`Y8b
6
+ 88 YY 88 88 dP Yb 88 88 Y8 8bodP'
7
+ ------------------------------------------------------------------------------
8
+ Mixins
9
+ ------------------------------------------------------------------------------
10
+ */
11
+
12
+ /* =============================================================================
13
+ Debug Media Query
14
+ ========================================================================== */
15
+ @mixin debug-mq($message, $color: rgba(255,255,0, 0.6) ){
16
+ &::before{
17
+ content: $message;
18
+ font-weight: bold;
19
+ display: block;
20
+ text-align: center;
21
+ background: #{$color};
22
+ position: absolute;
23
+ right: 0;
24
+ left: 0;
25
+ top: 0;
26
+ z-index: 99;
27
+ }
28
+ }
29
+
30
+ /* =============================================================================
31
+ Font-size in REM with PX fallback / Line-height / Margin.
32
+ Note: margin-top + margin-bottom need the equal the line-height. That value
33
+ needs to be divisible by $base-line-height to keep the vertical rhymth
34
+ ========================================================================== */
35
+ @mixin fz($size: 16px, $lines: 2){
36
+
37
+ font-size:$size;
38
+ @include adjust-font-size-to($size, $lines);
39
+ margin: ($base-line-height/2) 0;
40
+ margin: ((($base-line-height/$base-font-size)/2) + rem) 0;
41
+
42
+ //@debug ((($base-line-height/$base-font-size)/2) + rem) 0;
43
+
44
+ }
45
+
46
+ /* =============================================================================
47
+ Vertical Rhymth Margins:
48
+ Note: Adds margin-top/bottom. margin-left/right are set to 0.
49
+
50
+ Use: When you have used a function like horizontal-list(),
51
+ it resets the margin to 0. vr-ma() can used to add margins back to
52
+ keep the vertical rhymth
53
+ ========================================================================== */
54
+ @mixin vr-ma(){
55
+ margin: ($base-line-height/2) 0;
56
+ margin: ((($base-line-height/$base-font-size)/2) + rem) 0;
57
+
58
+ }
59
+
60
+ /* =============================================================================
61
+ Vertical Rhymth Margins:
62
+ Note: Adds margin-top.
63
+ ========================================================================== */
64
+ @mixin vr-mt(){
65
+ margin-top: $base-line-height;
66
+ margin-top: (($base-line-height/$base-font-size) + rem);
67
+ }
68
+
69
+ /* =============================================================================
70
+ Vertical Rhymth Margins:
71
+ Note: Adds margin-bottom.
72
+ ========================================================================== */
73
+ @mixin vr-mb(){
74
+ margin-bottom: $base-line-height;
75
+ margin-bottom: (($base-line-height/$base-font-size) + rem);
76
+ }
77
+
78
+
79
+
80
+ /* =============================================================================
81
+ Input Style
82
+ Note: Adds margin-top/bottom. margin-left/right are set to 0.
83
+ ========================================================================== */
84
+
85
+ @mixin input-style($fz:16px, $rad:5px ){
86
+
87
+ @include box-sizing(border-box);
88
+ @include border-radius($rad);
89
+
90
+ border: 1px solid $col-dark-gray;
91
+ padding-left:5px;
92
+ padding-right:5px;
93
+ color:$col-body;
94
+
95
+ //&:focus{ outline:none;}
96
+
97
+ &:focus,
98
+ &:hover{ border: 1px solid darken($col-dark-gray, 20%) }
99
+
100
+ }
101
+
102
+ /* =============================================================================
103
+ Button Style
104
+ Note: Adds margin-top/bottom. margin-left/right are set to 0.
105
+ ========================================================================== */
106
+ @mixin button-style( $fz:14px, $bg:#000, $col:#fff, $border:#ccc ){
107
+
108
+ cursor: pointer;
109
+ @include inline-block;
110
+ background:$bg;
111
+ color:$col;
112
+ border:none;
113
+
114
+ font-size:$fz;
115
+ font-size: ($fz/$base-font-size)+em;
116
+ font-weight:600;
117
+ line-height:$lh-px;
118
+ line-height:$lh-rem;
119
+ text-decoration:none;
120
+
121
+ padding:0 ($base-line-height)/2;
122
+ padding:0 (($base-font-size/$base-line-height)/2)+rem;
123
+ @include border-radius(5px);
124
+
125
+ &.active,
126
+ &:hover,
127
+ &:focus{
128
+ background: lighten($bg, 50%);
129
+ text-decoration:none;
130
+ }// :hover
131
+
132
+ &[disabled]{
133
+ color: darken($col-gray, 30%);
134
+ @include background(none);
135
+ background: $col-gray;
136
+ }
137
+
138
+
139
+
140
+ }
@@ -0,0 +1,59 @@
1
+ /*
2
+ ------------------------------------------------------------------------------
3
+ 8b d8 dP"Yb 8888b. 88 88 88 888888 .dP"Y8
4
+ 88b d88 dP Yb 8I Yb 88 88 88 88__ `Ybo."
5
+ 88YbdP88 Yb dP 8I dY Y8 8P 88 .o 88"" o.`Y8b
6
+ 88 YY 88 YbodP 8888Y" `YbodP' 88ood8 888888 8bodP'
7
+ ------------------------------------------------------------------------------
8
+ Modules - yep, everything is a module
9
+ ------------------------------------------------------------------------------
10
+ */
11
+
12
+ @import "mods/mod-header";
13
+ @import "mods/mod-footer";
14
+ @import "mods/mod-main-nav";
15
+ @import "mods/mod-breadcrumb";
16
+
17
+
18
+
19
+ @import "mods/mod-layouts"; // Layouts for mods
20
+ @import "mods/mod-block"; //
21
+
22
+ @import "mods/mod-msg"; // Messages - Errors/Warnings/Success
23
+ @import "mods/mod-form"; // Inc validation
24
+ @import "mods/mod-table";
25
+
26
+ @import "mods/mod-intro";
27
+ @import "mods/mod-strip"; // 3 col layout
28
+ @import "mods/mod-map"; // google map
29
+ @import "mods/mod-carousel"; // Spotlight
30
+ @import "mods/mod-paging";
31
+ @import "mods/mod-split-form"; // Sign In / Forgot Password
32
+ @import "mods/mod-sitemap";
33
+ @import "mods/mod-widget";
34
+ /*
35
+
36
+
37
+
38
+ @import "mods/mod-content-nav"; // Aside
39
+
40
+ @import "mods/mod-tab";
41
+
42
+ @import "mods/mod-accordian";
43
+
44
+ @import "mods/mod-pull-out";
45
+
46
+ @import "mods/mod-social"; // Share social networks
47
+
48
+ @import "mods/mod-cta"; // Call to actions
49
+
50
+
51
+
52
+ @import "mods/mod-blog";
53
+
54
+
55
+
56
+ */
57
+
58
+
59
+
@@ -0,0 +1,36 @@
1
+ /*! normalize.css 2012-08-07T21:27 UTC | MIT License | git.io/normalize */
2
+
3
+ /* ==========================================================================
4
+ HTML5 display definitions
5
+ ========================================================================== */
6
+
7
+ /*
8
+ * Corrects `block` display not defined in IE6/7/8/9 & FF3.
9
+ */
10
+
11
+ article,
12
+ aside,
13
+ details,
14
+ figcaption,
15
+ figure,
16
+ footer,
17
+ header,
18
+ hgroup,
19
+ nav,
20
+ section,
21
+ summary {
22
+ display: block;
23
+ }
24
+
25
+
26
+ /*
27
+ * Addresses styling for `hidden` attribute not present in IE7/8/9, FF3, S4.
28
+ * Known issue: no IE6 support.
29
+ */
30
+
31
+ [hidden] {
32
+ display: none;
33
+ }
34
+
35
+
36
+
@@ -0,0 +1,80 @@
1
+ /* ==========================================================================
2
+ H5BP Print styles.
3
+ Inlined to avoid required HTTP connection: h5bp.com/r
4
+ ========================================================================== */
5
+
6
+ @media print {
7
+
8
+ .hdr-logo img{
9
+ display:block;
10
+ }
11
+
12
+ .mobile-main-nav{
13
+ display:none;
14
+ }
15
+
16
+ * {
17
+ background: transparent !important;
18
+ color: #000 !important; /* Black prints faster: h5bp.com/s */
19
+ box-shadow:none !important;
20
+ text-shadow: none !important;
21
+ }
22
+
23
+ a,
24
+ a:visited {
25
+ text-decoration: underline;
26
+ }
27
+
28
+ a[href]:after {
29
+ content: " (" attr(href) ")";
30
+ }
31
+
32
+ abbr[title]:after {
33
+ content: " (" attr(title) ")";
34
+ }
35
+
36
+ /*
37
+ * Don't show links for images, or javascript/internal links
38
+ */
39
+
40
+ .ir a:after,
41
+ a[href^="javascript:"]:after,
42
+ a[href^="#"]:after {
43
+ content: "";
44
+ }
45
+
46
+ pre,
47
+ blockquote {
48
+ border: 1px solid #999;
49
+ page-break-inside: avoid;
50
+ }
51
+
52
+ thead {
53
+ display: table-header-group; /* h5bp.com/t */
54
+ }
55
+
56
+ tr,
57
+ img {
58
+ page-break-inside: avoid;
59
+ }
60
+
61
+ img {
62
+ max-width: 100% !important;
63
+ }
64
+
65
+ @page {
66
+ margin: 0.5cm;
67
+ }
68
+
69
+ p,
70
+ h2,
71
+ h3 {
72
+ orphans: 3;
73
+ widows: 3;
74
+ }
75
+
76
+ h2,
77
+ h3 {
78
+ page-break-after: avoid;
79
+ }
80
+ }
@@ -0,0 +1,331 @@
1
+ /* ==========================================================================
2
+ Type
3
+ H5BP Normalize bits
4
+ ========================================================================== */
5
+ html {
6
+ font-size: 100%; /* 1 */
7
+ -webkit-text-size-adjust: 100%; /* 2 */
8
+ -ms-text-size-adjust: 100%; /* 2 */
9
+ }
10
+
11
+ // ***:EDIT
12
+ html,
13
+ button,
14
+ input,
15
+ select,
16
+ textarea {
17
+ font-family: $base-font;
18
+ }
19
+
20
+ body {
21
+ margin: 0;
22
+ }
23
+
24
+ a:focus {
25
+ outline: thin dotted;
26
+ }
27
+
28
+ a:active,
29
+ a:hover {
30
+ outline: 0;
31
+ }
32
+
33
+ abbr[title] {
34
+ border-bottom: 1px dotted;
35
+ }
36
+
37
+ b,
38
+ strong {
39
+ font-weight: bold;
40
+ }
41
+
42
+ // ***:EDIT
43
+ blockquote {
44
+ margin: $lh-px 0;
45
+ margin: $lh-rem 0;
46
+ }
47
+
48
+ dfn {
49
+ font-style: italic;
50
+ }
51
+
52
+ mark {
53
+ background: #ff0;
54
+ color: #000;
55
+ }
56
+
57
+ // ***:EDIT
58
+ p,
59
+ pre {
60
+ @include vr-ma;
61
+ }
62
+
63
+ code,
64
+ kbd,
65
+ pre,
66
+ samp {
67
+ font-family: monospace, serif;
68
+ _font-family: 'courier new', monospace;
69
+ font-size: 1em;
70
+ }
71
+
72
+ pre {
73
+ white-space: pre;
74
+ white-space: pre-wrap;
75
+ word-wrap: break-word;
76
+ }
77
+
78
+ q {
79
+ quotes: none;
80
+ }
81
+
82
+ q:before,
83
+ q:after {
84
+ content: '';
85
+ content: none;
86
+ }
87
+
88
+ small {
89
+ font-size: 75%;
90
+ }
91
+
92
+ sub,
93
+ sup {
94
+ font-size: 75%;
95
+ line-height: 0;
96
+ position: relative;
97
+ vertical-align: baseline;
98
+ }
99
+
100
+ sup {
101
+ top: -0.5em;
102
+ }
103
+
104
+ sub {
105
+ bottom: -0.25em;
106
+ }
107
+
108
+ /* ==========================================================================
109
+ Lists
110
+ ========================================================================== */
111
+ dl,
112
+ menu,
113
+ ol,
114
+ ul {
115
+ margin: 0;
116
+ }
117
+
118
+ dd {
119
+ margin: 0;
120
+ }
121
+
122
+ // ***:EDIT
123
+ menu,
124
+ ol,
125
+ ul {
126
+ padding: 0;
127
+ list-style-position:inside;
128
+ margin:$lh-px 0;
129
+ margin:$lh-rem 0;
130
+ }
131
+
132
+ nav ul,
133
+ nav ol {
134
+ list-style: none;
135
+ list-style-image: none;
136
+ }
137
+
138
+
139
+
140
+
141
+ ::-moz-selection {
142
+ background: #ff0099;
143
+ color:#fff;
144
+ text-shadow: none;
145
+ }
146
+
147
+ ::selection {
148
+ background: #ff0099;
149
+ color:#fff;
150
+ text-shadow: none;
151
+ }
152
+
153
+ /*
154
+ * A better looking default horizontal rule
155
+ */
156
+
157
+ hr {
158
+ display: block;
159
+ height: 1px;
160
+ border: 0;
161
+ border-top: 1px solid #ccc;
162
+ margin: 1em 0;
163
+ padding: 0;
164
+ }
165
+
166
+
167
+ /*
168
+ 888888 Yb dP 888888 888888 88b 88 8888b.
169
+ 88__ YbdP 88 88__ 88Yb88 8I Yb
170
+ 88"" dPYb 88 88"" 88 Y88 8I dY
171
+ 888888 dP Yb 88 888888 88 Y8 8888Y"
172
+ ------------------------------------------------------------------------------
173
+ Extend classes. These are classes should not in your HTML markup.
174
+ These class should be reused in this module for neatness.
175
+ ------------------------------------------------------------------------------
176
+ */
177
+
178
+
179
+
180
+
181
+
182
+
183
+ /*
184
+ 8888b. 888888 888888 db 88 88 88 888888 .dP"Y8 888888 Yb dP 88 888888 .dP"Y8
185
+ 8I Yb 88__ 88__ dPYb 88 88 88 88 `Ybo." 88 YbdP 88 88__ `Ybo."
186
+ 8I dY 88"" 88"" dP__Yb Y8 8P 88 .o 88 o.`Y8b 88 8P 88 .o 88"" o.`Y8b
187
+ 8888Y" 888888 88 dP""""Yb `YbodP' 88ood8 88 8bodP' 88 dP 88ood8 888888 8bodP'
188
+ ------------------------------------------------------------------------------
189
+ Default style
190
+ ------------------------------------------------------------------------------
191
+ */
192
+
193
+ html,
194
+ button,
195
+ input,
196
+ select,
197
+ textarea {
198
+ color: $col-body;
199
+ }
200
+
201
+
202
+ @include establish-baseline();
203
+ body{
204
+ //@include reset-baseline;
205
+ @if $DEBUG == true{
206
+ @include debug-vertical-alignment();
207
+ }
208
+ }
209
+
210
+ /* ==========================================================================
211
+ Headings ***:EDIT
212
+ ========================================================================== */
213
+
214
+ h1,h2,h3,h4,h5,h6{
215
+ font-family:$base-font-alt;
216
+ font-weight:600;
217
+ margin:0;
218
+ color:$col-header;
219
+ }
220
+
221
+ h1 {
222
+ @include fz(32px);
223
+ }
224
+
225
+ h2 {
226
+ @include fz(24px, 1);
227
+ }
228
+
229
+ h3 {
230
+ @include fz(20px, 1);
231
+ }
232
+
233
+ h4 {
234
+ @include fz(18px, 1);
235
+ }
236
+
237
+ h5 {
238
+ @include fz(16px, 1);
239
+ }
240
+
241
+ h6 {
242
+ @include fz(12px, 1);
243
+ }
244
+
245
+
246
+
247
+ /* =============================================================================
248
+ Links
249
+ ========================================================================== */
250
+ a {
251
+ color: #00e;
252
+ }
253
+
254
+ a:visited {
255
+ color: #551a8b;
256
+ }
257
+
258
+ a:hover {
259
+ color: #06e;
260
+ }
261
+
262
+ a.btn{
263
+ @include button-style;
264
+ }
265
+
266
+ .lt-ie8{
267
+ a.btn{
268
+ vertical-align:top;
269
+ //margin-top:-24px;
270
+ //background:pink;
271
+ }
272
+ }
273
+
274
+ /*
275
+ 8b d8 888888 8888b. 88 db dP"Yb 88 88 888888 88""Yb Yb dP 8b d8 dP"Yb 88""Yb 88 88 888888
276
+ 88b d88 88__ 8I Yb 88 dPYb dP Yb 88 88 88__ 88__dP YbdP ________ 88b d88 dP Yb 88__dP 88 88 88__
277
+ 88YbdP88 88"" 8I dY 88 dP__Yb Yb b dP Y8 8P 88"" 88"Yb 8P """""""" 88YbdP88 Yb dP 88""Yb 88 88 .o 88""
278
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 88 YY 88 YbodP 88oodP 88 88ood8 888888
279
+ ------------------------------------------------------------------------------
280
+ Mobile
281
+ ------------------------------------------------------------------------------
282
+ */
283
+ @media only screen and (min-width: $mq-mob-min) and (max-width: $mq-mob-max){
284
+
285
+ /* =============================================================================
286
+ Comment
287
+ ========================================================================== */
288
+
289
+
290
+ }// /@media mob
291
+
292
+
293
+ /*
294
+ 8b d8 888888 8888b. 88 db dP"Yb 88 88 888888 88""Yb Yb dP 888888 db 88""Yb 88 888888 888888
295
+ 88b d88 88__ 8I Yb 88 dPYb dP Yb 88 88 88__ 88__dP YbdP ________ 88 dPYb 88__dP 88 88__ 88
296
+ 88YbdP88 88"" 8I dY 88 dP__Yb Yb b dP Y8 8P 88"" 88"Yb 8P """""""" 88 dP__Yb 88""Yb 88 .o 88"" 88
297
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 88 dP""""Yb 88oodP 88ood8 888888 88
298
+ ------------------------------------------------------------------------------
299
+ Tablet
300
+ ------------------------------------------------------------------------------
301
+ */
302
+ @media only screen and (min-width: $mq-tab-min) and (max-width: $mq-tab-max){
303
+
304
+ /* =============================================================================
305
+ Comment
306
+ ========================================================================== */
307
+
308
+
309
+
310
+ }// /@media tab
311
+
312
+ /*
313
+ 8b d8 888888 8888b. 88 db dP"Yb 88 88 888888 88""Yb Yb dP 8888b. 888888 .dP"Y8 88 dP 888888 dP"Yb 88""Yb
314
+ 88b d88 88__ 8I Yb 88 dPYb dP Yb 88 88 88__ 88__dP YbdP ________ 8I Yb 88__ `Ybo." 88odP 88 dP Yb 88__dP
315
+ 88YbdP88 88"" 8I dY 88 dP__Yb Yb b dP Y8 8P 88"" 88"Yb 8P """""""" 8I dY 88"" o.`Y8b 88"Yb 88 Yb dP 88"""
316
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 8888Y" 888888 8bodP' 88 Yb 88 YbodP 88
317
+ ------------------------------------------------------------------------------
318
+ Desktop
319
+ ------------------------------------------------------------------------------
320
+ */
321
+ @media only screen and (min-width: $mq-dsk-min){
322
+
323
+ /* =============================================================================
324
+ Comment
325
+ ========================================================================== */
326
+
327
+
328
+ }// /@media dsk
329
+
330
+
331
+