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,118 @@
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
+ Strip
13
+ ======================================================================== */
14
+ .mod-strip{
15
+ //background:red;
16
+ article{
17
+ //background:yellow;
18
+ }
19
+ }
20
+
21
+
22
+ /*----------------------------------------------------------------------------
23
+ 8888b. 888888 888888 db 88 88 88 888888 .dP"Y8 888888 Yb dP 88 888888 .dP"Y8
24
+ 8I Yb 88__ 88__ dPYb 88 88 88 88 `Ybo." 88 YbdP 88 88__ `Ybo."
25
+ 8I dY 88"" 88"" dP__Yb Y8 8P 88 .o 88 o.`Y8b 88 8P 88 .o 88"" o.`Y8b
26
+ 8888Y" 888888 88 dP""""Yb `YbodP' 88ood8 88 8bodP' 88 dP 88ood8 888888 8bodP'
27
+ ------------------------------------------------------------------------------
28
+ Default style
29
+ ----------------------------------------------------------------------------*/
30
+
31
+ /* ===========================================================================
32
+ Comment
33
+ ======================================================================== */
34
+
35
+
36
+
37
+ /*----------------------------------------------------------------------------
38
+ 8b d8 888888 8888b. 88 db dP"Yb 88 88 888888 88""Yb Yb dP 8b d8 dP"Yb 88""Yb 88 88 888888
39
+ 88b d88 88__ 8I Yb 88 dPYb dP Yb 88 88 88__ 88__dP YbdP ________ 88b d88 dP Yb 88__dP 88 88 88__
40
+ 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""
41
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 88 YY 88 YbodP 88oodP 88 88ood8 888888
42
+ ------------------------------------------------------------------------------
43
+ Mobile
44
+ ---------------------------------------------------------------------------*/
45
+ @media only screen and (min-width: $mq-mob-min) and (max-width: $mq-mob-max){
46
+
47
+ /* ===========================================================================
48
+ Comment
49
+ ======================================================================== */
50
+
51
+
52
+
53
+ }// /@media mob
54
+
55
+
56
+ /*----------------------------------------------------------------------------
57
+ 8b d8 888888 8888b. 88 db dP"Yb 88 88 888888 88""Yb Yb dP 888888 db 88""Yb 88 888888 888888
58
+ 88b d88 88__ 8I Yb 88 dPYb dP Yb 88 88 88__ 88__dP YbdP ________ 88 dPYb 88__dP 88 88__ 88
59
+ 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
60
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 88 dP""""Yb 88oodP 88ood8 888888 88
61
+ ------------------------------------------------------------------------------
62
+ Tablet
63
+ ----------------------------------------------------------------------------*/
64
+ @media only screen and (min-width: $mq-tab-min) and (max-width: $mq-tab-max){
65
+
66
+ /* ===========================================================================
67
+ Comment
68
+ ======================================================================== */
69
+
70
+
71
+
72
+ }// /@media tab
73
+
74
+ /*----------------------------------------------------------------------------
75
+ 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
76
+ 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
77
+ 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"""
78
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 8888Y" 888888 8bodP' 88 Yb 88 YbodP 88
79
+ ------------------------------------------------------------------------------
80
+ Desktop
81
+ ----------------------------------------------------------------------------*/
82
+ @media only screen and (min-width: $mq-dsk-min){
83
+
84
+ .mod-strip{
85
+
86
+ article{
87
+ @include span-columns(4);
88
+ &:last-child{
89
+ @include omega;
90
+
91
+ }
92
+
93
+ }
94
+
95
+ }
96
+
97
+ }// /@media dsk
98
+
99
+
100
+
101
+ /*----------------------------------------------------------------------------
102
+ 88""Yb 888888 888888 88 88b 88 db
103
+ 88__dP 88__ 88 88 88Yb88 dPYb
104
+ 88"Yb 88"" 88 88 88 Y88 dP__Yb
105
+ 88 Yb 888888 88 88 88 Y8 dP""""Yb
106
+ ------------------------------------------------------------------------------
107
+ Retina
108
+ ----------------------------------------------------------------------------*/
109
+ /*@media screen and (-webkit-min-device-pixel-ratio: $pixel-ratio-min),
110
+ screen and (max--moz-device-pixel-ratio: $pixel-ratio-min),
111
+ screen and (-o-min-device-pixel-ratio: ($pixel-ratio-min/1)),
112
+ screen and (min-device-pixel-ratio: $pixel-ratio-min) {
113
+
114
+ }*/
115
+ @media only screen and (-webkit-min-device-pixel-ratio: $pixel-ratio-min),
116
+ only screen and (min-device-pixel-ratio: $pixel-ratio-min) {
117
+
118
+ }
@@ -0,0 +1,118 @@
1
+ /* ==========================================================================
2
+ Tables
3
+ H5BP Normalize bits
4
+ ========================================================================== */
5
+
6
+ /*
7
+ * Remove most spacing between table cells.
8
+ */
9
+
10
+ table {
11
+ border-collapse: collapse;
12
+ border-spacing: 0;
13
+ }
14
+
15
+
16
+ /*----------------------------------------------------------------------------
17
+ 888888 Yb dP 888888 888888 88b 88 8888b.
18
+ 88__ YbdP 88 88__ 88Yb88 8I Yb
19
+ 88"" dPYb 88 88"" 88 Y88 8I dY
20
+ 888888 dP Yb 88 888888 88 Y8 8888Y"
21
+ ------------------------------------------------------------------------------
22
+ Extend classes. These are classes should not in your HTML markup.
23
+ These class should be reused in this module for neatness.
24
+ ----------------------------------------------------------------------------*/
25
+
26
+ /* ===========================================================================
27
+ Comment
28
+ ======================================================================== */
29
+
30
+
31
+ /*----------------------------------------------------------------------------
32
+ 8888b. 888888 888888 db 88 88 88 888888 .dP"Y8 888888 Yb dP 88 888888 .dP"Y8
33
+ 8I Yb 88__ 88__ dPYb 88 88 88 88 `Ybo." 88 YbdP 88 88__ `Ybo."
34
+ 8I dY 88"" 88"" dP__Yb Y8 8P 88 .o 88 o.`Y8b 88 8P 88 .o 88"" o.`Y8b
35
+ 8888Y" 888888 88 dP""""Yb `YbodP' 88ood8 88 8bodP' 88 dP 88ood8 888888 8bodP'
36
+ ------------------------------------------------------------------------------
37
+ Default style
38
+ ----------------------------------------------------------------------------*/
39
+
40
+ /* ===========================================================================
41
+ Comment
42
+ ======================================================================== */
43
+
44
+
45
+
46
+ /*----------------------------------------------------------------------------
47
+ 8b d8 888888 8888b. 88 db dP"Yb 88 88 888888 88""Yb Yb dP 8b d8 dP"Yb 88""Yb 88 88 888888
48
+ 88b d88 88__ 8I Yb 88 dPYb dP Yb 88 88 88__ 88__dP YbdP ________ 88b d88 dP Yb 88__dP 88 88 88__
49
+ 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""
50
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 88 YY 88 YbodP 88oodP 88 88ood8 888888
51
+ ------------------------------------------------------------------------------
52
+ Mobile
53
+ ---------------------------------------------------------------------------*/
54
+ @media only screen and (min-width: $mq-mob-min) and (max-width: $mq-mob-max){
55
+
56
+ /* ===========================================================================
57
+ Comment
58
+ ======================================================================== */
59
+
60
+
61
+
62
+ }// /@media mob
63
+
64
+
65
+ /*----------------------------------------------------------------------------
66
+ 8b d8 888888 8888b. 88 db dP"Yb 88 88 888888 88""Yb Yb dP 888888 db 88""Yb 88 888888 888888
67
+ 88b d88 88__ 8I Yb 88 dPYb dP Yb 88 88 88__ 88__dP YbdP ________ 88 dPYb 88__dP 88 88__ 88
68
+ 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
69
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 88 dP""""Yb 88oodP 88ood8 888888 88
70
+ ------------------------------------------------------------------------------
71
+ Tablet
72
+ ----------------------------------------------------------------------------*/
73
+ @media only screen and (min-width: $mq-tab-min) and (max-width: $mq-tab-max){
74
+
75
+ /* ===========================================================================
76
+ Comment
77
+ ======================================================================== */
78
+
79
+
80
+
81
+ }// /@media tab
82
+
83
+ /*----------------------------------------------------------------------------
84
+ 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
85
+ 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
86
+ 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"""
87
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 8888Y" 888888 8bodP' 88 Yb 88 YbodP 88
88
+ ------------------------------------------------------------------------------
89
+ Desktop
90
+ ----------------------------------------------------------------------------*/
91
+ @media only screen and (min-width: $mq-dsk-min){
92
+
93
+ /* ===========================================================================
94
+ Comment
95
+ ======================================================================== */
96
+
97
+ }// /@media dsk
98
+
99
+
100
+
101
+ /*----------------------------------------------------------------------------
102
+ 88""Yb 888888 888888 88 88b 88 db
103
+ 88__dP 88__ 88 88 88Yb88 dPYb
104
+ 88"Yb 88"" 88 88 88 Y88 dP__Yb
105
+ 88 Yb 888888 88 88 88 Y8 dP""""Yb
106
+ ------------------------------------------------------------------------------
107
+ Retina
108
+ ----------------------------------------------------------------------------*/
109
+ /*@media screen and (-webkit-min-device-pixel-ratio: $pixel-ratio-min),
110
+ screen and (max--moz-device-pixel-ratio: $pixel-ratio-min),
111
+ screen and (-o-min-device-pixel-ratio: ($pixel-ratio-min/1)),
112
+ screen and (min-device-pixel-ratio: $pixel-ratio-min) {
113
+
114
+ }*/
115
+ @media only screen and (-webkit-min-device-pixel-ratio: $pixel-ratio-min),
116
+ only screen and (min-device-pixel-ratio: $pixel-ratio-min) {
117
+
118
+ }
@@ -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
+ /*----------------------------------------------------------------------------
13
+ 8888b. 888888 888888 db 88 88 88 888888 .dP"Y8 888888 Yb dP 88 888888 .dP"Y8
14
+ 8I Yb 88__ 88__ dPYb 88 88 88 88 `Ybo." 88 YbdP 88 88__ `Ybo."
15
+ 8I dY 88"" 88"" dP__Yb Y8 8P 88 .o 88 o.`Y8b 88 8P 88 .o 88"" o.`Y8b
16
+ 8888Y" 888888 88 dP""""Yb `YbodP' 88ood8 88 8bodP' 88 dP 88ood8 888888 8bodP'
17
+ ------------------------------------------------------------------------------
18
+ Default style
19
+ ----------------------------------------------------------------------------*/
20
+
21
+
22
+ .widget{
23
+
24
+ h4{
25
+ @include vr-mt();
26
+ }
27
+
28
+ }
29
+
30
+
31
+ /*----------------------------------------------------------------------------
32
+ 8b d8 888888 8888b. 88 db dP"Yb 88 88 888888 88""Yb Yb dP 8b d8 dP"Yb 88""Yb 88 88 888888
33
+ 88b d88 88__ 8I Yb 88 dPYb dP Yb 88 88 88__ 88__dP YbdP ________ 88b d88 dP Yb 88__dP 88 88 88__
34
+ 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""
35
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 88 YY 88 YbodP 88oodP 88 88ood8 888888
36
+ ------------------------------------------------------------------------------
37
+ Mobile
38
+ ---------------------------------------------------------------------------*/
39
+ @media only screen and (min-width: $mq-mob-min) and (max-width: $mq-mob-max){
40
+
41
+ /* ===========================================================================
42
+ Comment
43
+ ======================================================================== */
44
+
45
+
46
+
47
+ }// /@media mob
48
+
49
+
50
+ /*----------------------------------------------------------------------------
51
+ 8b d8 888888 8888b. 88 db dP"Yb 88 88 888888 88""Yb Yb dP 888888 db 88""Yb 88 888888 888888
52
+ 88b d88 88__ 8I Yb 88 dPYb dP Yb 88 88 88__ 88__dP YbdP ________ 88 dPYb 88__dP 88 88__ 88
53
+ 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
54
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 88 dP""""Yb 88oodP 88ood8 888888 88
55
+ ------------------------------------------------------------------------------
56
+ Tablet
57
+ ----------------------------------------------------------------------------*/
58
+ @media only screen and (min-width: $mq-tab-min) and (max-width: $mq-tab-max){
59
+
60
+ /* ===========================================================================
61
+ Comment
62
+ ======================================================================== */
63
+
64
+
65
+
66
+ }// /@media tab
67
+
68
+ /*----------------------------------------------------------------------------
69
+ 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
70
+ 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
71
+ 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"""
72
+ 88 YY 88 888888 8888Y" 88 dP""""Yb `"YoYo `YbodP' 888888 88 Yb dP 8888Y" 888888 8bodP' 88 Yb 88 YbodP 88
73
+ ------------------------------------------------------------------------------
74
+ Desktop
75
+ ----------------------------------------------------------------------------*/
76
+ @media only screen and (min-width: $mq-dsk-min){
77
+
78
+ /* ===========================================================================
79
+ Comment
80
+ ======================================================================== */
81
+
82
+ }// /@media dsk
83
+
84
+
85
+
86
+ /*----------------------------------------------------------------------------
87
+ 88""Yb 888888 888888 88 88b 88 db
88
+ 88__dP 88__ 88 88 88Yb88 dPYb
89
+ 88"Yb 88"" 88 88 88 Y88 dP__Yb
90
+ 88 Yb 888888 88 88 88 Y8 dP""""Yb
91
+ ------------------------------------------------------------------------------
92
+ Retina
93
+ ----------------------------------------------------------------------------*/
94
+ /*@media screen and (-webkit-min-device-pixel-ratio: $pixel-ratio-min),
95
+ screen and (max--moz-device-pixel-ratio: $pixel-ratio-min),
96
+ screen and (-o-min-device-pixel-ratio: ($pixel-ratio-min/1)),
97
+ screen and (min-device-pixel-ratio: $pixel-ratio-min) {
98
+
99
+ }*/
100
+ @media only screen and (-webkit-min-device-pixel-ratio: $pixel-ratio-min),
101
+ only screen and (min-device-pixel-ratio: $pixel-ratio-min) {
102
+
103
+ }
@@ -0,0 +1,82 @@
1
+ /*
2
+ * jQuery FlexSlider v2.0
3
+ * http://www.woothemes.com/flexslider/
4
+ *
5
+ * Copyright 2012 WooThemes
6
+ * Free to use under the GPLv2 license.
7
+ * http://www.gnu.org/licenses/gpl-2.0.html
8
+ *
9
+ * Contributing author: Tyler Smith (@mbmufffin)
10
+ */
11
+
12
+
13
+ /* Browser Resets */
14
+ .flex-container a:active,
15
+ .flexslider a:active,
16
+ .flex-container a:focus,
17
+ .flexslider a:focus {outline: none;}
18
+ .slides,
19
+ .flex-control-nav,
20
+ .flex-direction-nav {margin: 0; padding: 0; list-style: none;}
21
+
22
+ /* FlexSlider Necessary Styles
23
+ *********************************/
24
+ .flexslider {margin: 0; padding: 0;}
25
+ .flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
26
+ .flexslider .slides img {width: 100%; display: block;}
27
+ .flex-pauseplay span {text-transform: capitalize;}
28
+
29
+ /* Clearfix for the .slides element */
30
+ .slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
31
+ html[xmlns] .slides {display: block;}
32
+ * html .slides {height: 1%;}
33
+
34
+ /* No JavaScript Fallback */
35
+ /* If you are not using another script, such as Modernizr, make sure you
36
+ * include js that eliminates this class on page load */
37
+ .no-js .slides > li:first-child {display: block;}
38
+
39
+
40
+ /* FlexSlider Default Theme
41
+ *********************************/
42
+ .flexslider {margin: 0 0 60px; background: #fff; border: 4px solid #fff; position: relative; -webkit-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,.2); -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2); -moz-box-shadow: 0 1px 4px rgba(0,0,0,.2); -o-box-shadow: 0 1px 4px rgba(0,0,0,.2); zoom: 1;}
43
+ .flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
44
+ .loading .flex-viewport {max-height: 300px;}
45
+ .flexslider .slides {zoom: 1;}
46
+
47
+ .carousel li {margin-right: 5px}
48
+
49
+
50
+ /* Direction Nav */
51
+ .flex-direction-nav {*height: 0;}
52
+ .flex-direction-nav a {width: 30px; height: 30px; margin: -20px 0 0; display: block; background: url(../img/bg_direction_nav.png) no-repeat 0 0; position: absolute; top: 50%; cursor: pointer; text-indent: -9999px; opacity: 0; -webkit-transition: all .3s ease;}
53
+ .flex-direction-nav .flex-next {background-position: 100% 0; right: -36px; }
54
+ .flex-direction-nav .flex-prev {left: -36px;}
55
+ .flexslider:hover .flex-next {opacity: 0.8; right: 5px;}
56
+ .flexslider:hover .flex-prev {opacity: 0.8; left: 5px;}
57
+ .flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {opacity: 1;}
58
+ .flex-direction-nav .flex-disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}
59
+
60
+ /* Control Nav */
61
+ .flex-control-nav {
62
+ width: 100%;
63
+ //position: absolute;
64
+ //bottom: -40px;
65
+ text-align: center;
66
+ @include vr-ma;
67
+ }
68
+ .flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
69
+ .flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(0,0,0,0.3);}
70
+ .flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
71
+ .flex-control-paging li a.flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }
72
+
73
+ .flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
74
+ .flex-control-thumbs li {width: 25%; float: left; margin: 0;}
75
+ .flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
76
+ .flex-control-thumbs img:hover {opacity: 1;}
77
+ .flex-control-thumbs .flex-active {opacity: 1; cursor: default;}
78
+
79
+ @media screen and (max-width: 860px) {
80
+ .flex-direction-nav .flex-prev {opacity: 1; left: 0;}
81
+ .flex-direction-nav .flex-next {opacity: 1; right: 0;}
82
+ }
@@ -0,0 +1,137 @@
1
+ /* Z-INDEX */
2
+ .formError { z-index: 990; }
3
+ .formError .formErrorContent { z-index: 991; }
4
+ .formError .formErrorArrow { z-index: 996; }
5
+
6
+ .formErrorInsideDialog.formError { z-index: 5000; }
7
+ .formErrorInsideDialog.formError .formErrorContent { z-index: 5001; }
8
+ .formErrorInsideDialog.formError .formErrorArrow { z-index: 5006; }
9
+
10
+
11
+
12
+
13
+ .inputContainer {
14
+ position: relative;
15
+ float: left;
16
+ }
17
+
18
+ .formError {
19
+ position: absolute;
20
+ top: 300px;
21
+ left: 300px;
22
+ display: block;
23
+ cursor: pointer;
24
+ }
25
+
26
+ .ajaxSubmit {
27
+ padding: 20px;
28
+ background: #55ea55;
29
+ border: 1px solid #999;
30
+ display: none
31
+ }
32
+
33
+ .formError .formErrorContent {
34
+ background: red;
35
+ position:relative;
36
+ color: #fff;
37
+ width: 150px;
38
+ font-size: 0.75em;
39
+ line-height:1.2em;
40
+ padding: 0.25em 0.5em;
41
+ }
42
+
43
+ .greenPopup .formErrorContent {
44
+ background: #33be40;
45
+ }
46
+
47
+ .blackPopup .formErrorContent {
48
+ background: #393939;
49
+ color: #FFF;
50
+ }
51
+
52
+ .formError .formErrorArrow {
53
+ width: 15px;
54
+ margin: 0 0 0 13px;
55
+ position:relative;
56
+ }
57
+ body[dir='rtl'] .formError .formErrorArrow,
58
+ body.rtl .formError .formErrorArrow {
59
+ margin: 0 13px 0 0;
60
+ }
61
+
62
+ .formError .formErrorArrowBottom {
63
+ margin: 0px 0 0 12px;
64
+ top:2px;
65
+ }
66
+
67
+ .formError .formErrorArrow div {
68
+ font-size: 0px;
69
+ height: 1px;
70
+ background: red;
71
+ margin: 0 auto;
72
+ line-height: 0;
73
+ font-size: 0;
74
+ display: block;
75
+ }
76
+
77
+ .formError .formErrorArrowBottom div {
78
+ }
79
+
80
+ .greenPopup .formErrorArrow div {
81
+ background: #33be40;
82
+ }
83
+
84
+ .blackPopup .formErrorArrow div {
85
+ background: #393939;
86
+ color: #FFF;
87
+ }
88
+
89
+ .formError .formErrorArrow .line10 {
90
+ width: 15px;
91
+ border: none;
92
+ }
93
+
94
+ .formError .formErrorArrow .line9 {
95
+ width: 13px;
96
+ border: none;
97
+ }
98
+
99
+ .formError .formErrorArrow .line8 {
100
+ width: 11px;
101
+ }
102
+
103
+ .formError .formErrorArrow .line7 {
104
+ width: 9px;
105
+ }
106
+
107
+ .formError .formErrorArrow .line6 {
108
+ width: 7px;
109
+ }
110
+
111
+ .formError .formErrorArrow .line5 {
112
+ width: 5px;
113
+ }
114
+
115
+ .formError .formErrorArrow .line4 {
116
+ width: 3px;
117
+ }
118
+
119
+ .formError .formErrorArrow .line3 {
120
+ width: 1px;
121
+ border-left: 2px solid #ddd;
122
+ border-right: 2px solid #ddd;
123
+ border-bottom: 0 solid #ddd;
124
+ }
125
+
126
+ .formError .formErrorArrow .line2 {
127
+ width: 3px;
128
+ border: none;
129
+ background: #ddd;
130
+ }
131
+
132
+ .formError .formErrorArrow .line1 {
133
+ width: 1px;
134
+ border: none;
135
+ background: #ddd;
136
+ }
137
+