compass-vikingR-template 1.2.4

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 (53) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +97 -0
  3. data/lib/compass-vikingR-template.rb +60 -0
  4. data/lib/config.rb +8 -0
  5. data/templates/project/css/dev.css +3 -0
  6. data/templates/project/files/compass_watch.bat +1 -0
  7. data/templates/project/files/readme.txt +31 -0
  8. data/templates/project/files/screenshot.jpg +0 -0
  9. data/templates/project/ie-old/favicon.ico +0 -0
  10. data/templates/project/ie-old/images/as.jpg +0 -0
  11. data/templates/project/ie-old/images/bg_span_wol.gif +0 -0
  12. data/templates/project/ie-old/images/f.jpg +0 -0
  13. data/templates/project/ie-old/images/gc.jpg +0 -0
  14. data/templates/project/ie-old/images/h.jpg +0 -0
  15. data/templates/project/ie-old/images/ie.jpg +0 -0
  16. data/templates/project/ie-old/images/mf.jpg +0 -0
  17. data/templates/project/ie-old/images/op.jpg +0 -0
  18. data/templates/project/ie-old/images/td1.jpg +0 -0
  19. data/templates/project/ie-old/images/td2.jpg +0 -0
  20. data/templates/project/ie-old/images/td3.jpg +0 -0
  21. data/templates/project/ie-old/index.html +175 -0
  22. data/templates/project/images/favicon.png +0 -0
  23. data/templates/project/images/loading.gif +0 -0
  24. data/templates/project/images/noimg.jpg +0 -0
  25. data/templates/project/index.html +29 -0
  26. data/templates/project/index.php +79 -0
  27. data/templates/project/js/example.js +3 -0
  28. data/templates/project/js/head.min.js +9 -0
  29. data/templates/project/js/init.js +49 -0
  30. data/templates/project/js/ph.js +33 -0
  31. data/templates/project/js/ph.min.js +2 -0
  32. data/templates/project/js/rform.js +228 -0
  33. data/templates/project/js/scripts.js +3 -0
  34. data/templates/project/manifest.rb +78 -0
  35. data/templates/project/sass/_all.scss +1 -0
  36. data/templates/project/sass/_browsers.scss +49 -0
  37. data/templates/project/sass/_buttons.scss +54 -0
  38. data/templates/project/sass/_content.scss +7 -0
  39. data/templates/project/sass/_default.scss +252 -0
  40. data/templates/project/sass/_footer.scss +5 -0
  41. data/templates/project/sass/_formstyle.scss +130 -0
  42. data/templates/project/sass/_global.scss +38 -0
  43. data/templates/project/sass/_header.scss +5 -0
  44. data/templates/project/sass/_icons.scss +40 -0
  45. data/templates/project/sass/_layout.scss +3 -0
  46. data/templates/project/sass/_mixins.scss +318 -0
  47. data/templates/project/sass/_reset.scss +455 -0
  48. data/templates/project/sass/_responsive.scss +25 -0
  49. data/templates/project/sass/_rforms.scss +213 -0
  50. data/templates/project/sass/_typography.scss +105 -0
  51. data/templates/project/sass/_variables.scss +69 -0
  52. data/templates/project/sass/index.scss +35 -0
  53. metadata +95 -0
@@ -0,0 +1,105 @@
1
+ // Typography
2
+ $alignImgSide: 16px;
3
+ $alignImgBottom: 10px;
4
+
5
+ a,
6
+ .link-fake{
7
+ color: $baseLinkColor;
8
+ text-decoration: underline;
9
+ // &:visited{
10
+ // color: $baseLinkColor;
11
+ // text-decoration: underline;
12
+ // }
13
+ &:hover{
14
+ text-decoration: none;
15
+ }
16
+ &:active{
17
+ text-decoration: none;
18
+ }
19
+ }
20
+
21
+ .text{
22
+ line-height: normal;
23
+ h1,
24
+ h2,
25
+ h3{
26
+ margin: 30px 0 15px;
27
+ }
28
+ h4,
29
+ h5,
30
+ h6,
31
+ ul,
32
+ ol,
33
+ table,
34
+ hr{
35
+ margin: 10px 0;
36
+ }
37
+ h1{
38
+ @include rem-font-size(36px);
39
+ }
40
+ h2{
41
+ @include rem-font-size(30px);
42
+ }
43
+ h3{
44
+ @include rem-font-size(24px);
45
+ }
46
+ ul{
47
+ list-style: disc;
48
+ li{}
49
+ }
50
+ ol{
51
+ list-style: decimal;
52
+ li{}
53
+ }
54
+ li{
55
+ margin-left: 30px;
56
+ }
57
+ p{
58
+ margin-bottom: 15px;
59
+ }
60
+ table,
61
+ td,
62
+ th{
63
+ border: 1px solid #ccc;
64
+ }
65
+ td,
66
+ th{
67
+ padding: 5px;
68
+ }
69
+ hr{
70
+ clear: both;
71
+
72
+ border-top: 1px solid #ddd;
73
+ }
74
+ blockquote{
75
+ padding-left: 16px;
76
+ margin: 16px 28px 10px 16px;
77
+
78
+ border-left: 2px solid #333;
79
+ }
80
+ img,
81
+ embed,
82
+ object,
83
+ video{
84
+ max-width: 100%;
85
+ height: auto;
86
+ }
87
+ }
88
+
89
+ // Images
90
+
91
+ .aligncenter{
92
+ @extend .block;
93
+
94
+ margin: 0 auto 2px;
95
+ }
96
+ .alignright{
97
+ @extend .right;
98
+
99
+ margin: 0 0 $alignImgBottom $alignImgSide;
100
+ }
101
+ .alignleft{
102
+ @extend .left;
103
+
104
+ margin: 0 $alignImgSide $alignImgBottom 0;
105
+ }
@@ -0,0 +1,69 @@
1
+ // Global
2
+
3
+ // To enable SVG gradient support in Opera and IE9
4
+ $experimental-support-for-svg: true;
5
+ // Determines if you want to include magic selectors in your sprites
6
+ $disable-magic-sprite-selectors:true;
7
+
8
+ // Resolution
9
+ $FHD: 1920px;
10
+ $WXGA-plus: 1680px;
11
+ $HD: 1366px;
12
+ $WXGA: 1280px;
13
+ $XGALandscape: 1024px;
14
+ $XGAPortrait: 768px;
15
+ $VGA: 640px;
16
+ $HVGA: 480px;
17
+ $QVGA: 320px;
18
+ // Vendor Extension Prefixes Placeholders
19
+ $prefixPlaceholders: ":-moz-placeholder", "::-moz-placeholder", "::-webkit-input-placeholder", ":-ms-input-placeholder", ".text-placeholder";
20
+
21
+ // **Fonts
22
+
23
+ // Web safe font combinations
24
+ $Arial: Arial, Helvetica, sans-serif;
25
+ $Verdana: Verdana, Geneva, sans-serif;
26
+ $Tahoma: Tahoma, Geneva, sans-serif;
27
+ $ArialBlack: "Arial Black", Gadget, sans-serif;
28
+ $ComicSansMS: "Comic Sans MS", cursive, sans-serif;
29
+ $Impact: Impact, Charcoal, sans-serif;
30
+ $LucidaSansUnicode: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
31
+ $TrebuchetMS: "Trebuchet MS", Helvetica, sans-serif;
32
+ $Georgia: Georgia, serif;
33
+ $PalatinoLinotype: "Palatino Linotype", "Book Antiqua", Palatino, serif;
34
+ $TimesNewRoman: "Times New Roman", Times, serif;
35
+ $CourierNew: "Courier New", Courier, monospace;
36
+ $LucidaConsole: "Lucida Console", Monaco, monospace;
37
+
38
+ // Load fonts
39
+
40
+
41
+
42
+ // **Sprite
43
+
44
+ $icons-spacing: 10px;
45
+ // @import "icons/*.png";
46
+
47
+ // --icons sprite--
48
+ $icons: null;
49
+ $blockIcons: null;
50
+ $befores: null;
51
+ $afters: null;
52
+ $buttons: null;
53
+
54
+ // **Brief
55
+
56
+ $baseFontFamily: $Arial;
57
+ $baseFontSize: rem-font-size($base-font-size);
58
+ $baseFontColor: #444;
59
+ $baseLinkColor: #287fc3;
60
+
61
+ $size: 960px;
62
+ $grid: $size;
63
+
64
+ $Max: $size;
65
+ $standard: $size;
66
+ $Min: $QVGA;
67
+
68
+ // --footer--
69
+ $footerHeight: 100px;
@@ -0,0 +1,35 @@
1
+ @charset "utf-8";
2
+
3
+ /*
4
+ Author: Sergii.Rudchyk
5
+ */
6
+ @import "compass/css3";
7
+ @import "compass/typography";
8
+ @import "ceaser-easing";
9
+
10
+ // Core
11
+ @import "source/mixins.scss";
12
+ @import "source/variables.scss";
13
+
14
+ // CSS Reset
15
+ @import "source/reset.scss";
16
+
17
+ @import "source/global.scss";
18
+ @import "source/typography.scss";
19
+ @import "source/formstyle.scss";
20
+ // @import "source/rforms.scss"; // rform
21
+ @import "source/buttons.scss";
22
+ @import "source/icons.scss";
23
+
24
+ @import "source/header.scss";
25
+ @import "source/content.scss";
26
+ @import "source/footer.scss";
27
+ // @import "source/some.scss";
28
+ @import "source/all.scss";
29
+
30
+ @import "source/default.scss";
31
+
32
+ @import "source/layout.scss";
33
+ @import "source/responsive.scss";
34
+
35
+ @import "source/browsers.scss";
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: compass-vikingR-template
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.2.4
5
+ platform: ruby
6
+ authors:
7
+ - Sergii Rudchyk
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-11-05 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A Compass implementation of Sergii Rudchyk's template
14
+ email:
15
+ - sergii.rudchyk@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - lib/compass-vikingR-template.rb
22
+ - lib/config.rb
23
+ - templates/project/css/dev.css
24
+ - templates/project/files/compass_watch.bat
25
+ - templates/project/files/readme.txt
26
+ - templates/project/files/screenshot.jpg
27
+ - templates/project/ie-old/favicon.ico
28
+ - templates/project/ie-old/images/as.jpg
29
+ - templates/project/ie-old/images/bg_span_wol.gif
30
+ - templates/project/ie-old/images/f.jpg
31
+ - templates/project/ie-old/images/gc.jpg
32
+ - templates/project/ie-old/images/h.jpg
33
+ - templates/project/ie-old/images/ie.jpg
34
+ - templates/project/ie-old/images/mf.jpg
35
+ - templates/project/ie-old/images/op.jpg
36
+ - templates/project/ie-old/images/td1.jpg
37
+ - templates/project/ie-old/images/td2.jpg
38
+ - templates/project/ie-old/images/td3.jpg
39
+ - templates/project/ie-old/index.html
40
+ - templates/project/images/favicon.png
41
+ - templates/project/images/loading.gif
42
+ - templates/project/images/noimg.jpg
43
+ - templates/project/index.html
44
+ - templates/project/index.php
45
+ - templates/project/js/example.js
46
+ - templates/project/js/head.min.js
47
+ - templates/project/js/init.js
48
+ - templates/project/js/ph.js
49
+ - templates/project/js/ph.min.js
50
+ - templates/project/js/rform.js
51
+ - templates/project/js/scripts.js
52
+ - templates/project/manifest.rb
53
+ - templates/project/sass/_all.scss
54
+ - templates/project/sass/_browsers.scss
55
+ - templates/project/sass/_buttons.scss
56
+ - templates/project/sass/_content.scss
57
+ - templates/project/sass/_default.scss
58
+ - templates/project/sass/_footer.scss
59
+ - templates/project/sass/_formstyle.scss
60
+ - templates/project/sass/_global.scss
61
+ - templates/project/sass/_header.scss
62
+ - templates/project/sass/_icons.scss
63
+ - templates/project/sass/_layout.scss
64
+ - templates/project/sass/_mixins.scss
65
+ - templates/project/sass/_reset.scss
66
+ - templates/project/sass/_responsive.scss
67
+ - templates/project/sass/_rforms.scss
68
+ - templates/project/sass/_typography.scss
69
+ - templates/project/sass/_variables.scss
70
+ - templates/project/sass/index.scss
71
+ homepage: https://github.com/Rudchyk/compass-vikingR-template
72
+ licenses:
73
+ - MIT
74
+ metadata: {}
75
+ post_install_message:
76
+ rdoc_options: []
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - '>='
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - '>='
87
+ - !ruby/object:Gem::Version
88
+ version: 1.3.6
89
+ requirements: []
90
+ rubyforge_project: compass-vikingR-template
91
+ rubygems_version: 2.3.0
92
+ signing_key:
93
+ specification_version: 4
94
+ summary: Sergii Rudchyk's template
95
+ test_files: []