quantum 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.project +13 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +82 -0
  7. data/Rakefile +1 -0
  8. data/lib/quantum.rb +8 -0
  9. data/lib/quantum/version.rb +3 -0
  10. data/quantum.gemspec +23 -0
  11. data/vendor/assets/.keep +0 -0
  12. data/vendor/assets/javascripts/alert.js +99 -0
  13. data/vendor/assets/javascripts/chart.js +1424 -0
  14. data/vendor/assets/javascripts/collapse.js +167 -0
  15. data/vendor/assets/javascripts/date_picker.js +474 -0
  16. data/vendor/assets/javascripts/dropdown.js +169 -0
  17. data/vendor/assets/javascripts/file_input.js +100 -0
  18. data/vendor/assets/javascripts/input_mask.js +355 -0
  19. data/vendor/assets/javascripts/map.js +1982 -0
  20. data/vendor/assets/javascripts/modal.js +247 -0
  21. data/vendor/assets/javascripts/popover.js +114 -0
  22. data/vendor/assets/javascripts/qrcode.js +89 -0
  23. data/vendor/assets/javascripts/qrcoder.js +1237 -0
  24. data/vendor/assets/javascripts/tab.js +144 -0
  25. data/vendor/assets/javascripts/time_picker.js +888 -0
  26. data/vendor/assets/javascripts/tooltip.js +361 -0
  27. data/vendor/assets/javascripts/transitions.js +60 -0
  28. data/vendor/assets/javascripts/typeahead.js +335 -0
  29. data/vendor/assets/javascripts/wizard.js +114 -0
  30. data/vendor/assets/stylesheets/alert.css.scss +42 -0
  31. data/vendor/assets/stylesheets/breadcrumb.css.scss +24 -0
  32. data/vendor/assets/stylesheets/button.css.scss +252 -0
  33. data/vendor/assets/stylesheets/chart.css.scss +10 -0
  34. data/vendor/assets/stylesheets/code.css.scss +47 -0
  35. data/vendor/assets/stylesheets/collapse.css.scss +16 -0
  36. data/vendor/assets/stylesheets/datepicker.css.scss +111 -0
  37. data/vendor/assets/stylesheets/dropdown.css.scss +98 -0
  38. data/vendor/assets/stylesheets/file_input.css.scss +7 -0
  39. data/vendor/assets/stylesheets/footer.css.scss +99 -0
  40. data/vendor/assets/stylesheets/form.css.scss +190 -0
  41. data/vendor/assets/stylesheets/grid.css.scss +334 -0
  42. data/vendor/assets/stylesheets/header.css.scss +162 -0
  43. data/vendor/assets/stylesheets/icon.css.scss +533 -0
  44. data/vendor/assets/stylesheets/image.css.scss +48 -0
  45. data/vendor/assets/stylesheets/label_and_badge.css.scss +60 -0
  46. data/vendor/assets/stylesheets/link.css.scss +22 -0
  47. data/vendor/assets/stylesheets/map.css.scss +13 -0
  48. data/vendor/assets/stylesheets/modal.css.scss +100 -0
  49. data/vendor/assets/stylesheets/pagination.css.scss +65 -0
  50. data/vendor/assets/stylesheets/popover.css.scss +110 -0
  51. data/vendor/assets/stylesheets/progress.css.scss +81 -0
  52. data/vendor/assets/stylesheets/qrcode.css.scss +7 -0
  53. data/vendor/assets/stylesheets/reset.css.scss +75 -0
  54. data/vendor/assets/stylesheets/tab.css.scss +202 -0
  55. data/vendor/assets/stylesheets/table.css.scss +71 -0
  56. data/vendor/assets/stylesheets/timepicker.css.scss +74 -0
  57. data/vendor/assets/stylesheets/tooltip.css.scss +83 -0
  58. data/vendor/assets/stylesheets/transitions.css.scss +14 -0
  59. data/vendor/assets/stylesheets/trunk.css.scss +80 -0
  60. data/vendor/assets/stylesheets/typeahead.css.scss +7 -0
  61. data/vendor/assets/stylesheets/typography.css.scss +130 -0
  62. data/vendor/assets/stylesheets/wizard.css.scss +27 -0
  63. metadata +134 -0
@@ -0,0 +1,14 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ #Transition */
4
+
5
+ /* #Transition
6
+ ================================================== */
7
+ .fade {
8
+ opacity: 0;
9
+ -webkit-transition: opacity 0.15s linear;
10
+ -moz-transition: opacity 0.15s linear;
11
+ -o-transition: opacity 0.15s linear;
12
+ transition: opacity 0.15s linear;
13
+ }
14
+ .fade.in { opacity: 1; }
@@ -0,0 +1,80 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ #Trunk
4
+ #Media Queries */
5
+
6
+ /* #Trunk
7
+ ================================================== */
8
+ .trunk {
9
+ background-color: rgba(43,50,53,1);
10
+ -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,0.1), inset 0 -1px 0 rgba(0,0,0,0.3);
11
+ -moz-box-shadow: inset 0 1px 3px rgba(0,0,0,0.1), inset 0 -1px 0 rgba(0,0,0,0.3);
12
+ box-shadow: inset 0 1px 3px rgba(0,0,0,0.1), inset 0 -1px 0 rgba(0,0,0,0.3);
13
+ left: 0;
14
+ position: fixed;
15
+ top: 50px;
16
+ width: 100%;
17
+ z-index: 1060;
18
+ }
19
+ .trunk-buffer { padding: 30px 0; }
20
+ .trunk-search input {
21
+ background-color: transparent;
22
+ border-color: rgba(255,255,255,0.25);
23
+ color: rgba(255,255,255,1);
24
+ font-weight: 200;
25
+ }
26
+ .trunk-search input:-moz-placeholder { color: rgba(255,255,255,0.40); }
27
+ .trunk-search input:-ms-input-placeholder { color: rgba(255,255,255,0.40); }
28
+ .trunk-search input::-webkit-input-placeholder { color: rgba(255,255,255,0.40); }
29
+ .trunk-nav a {
30
+ -webkit-border-radius: 3px;
31
+ -moz-border-radius: 3px;
32
+ border-radius: 3px;
33
+ color: rgba(255,255,255,0.8);
34
+ display: block;
35
+ font-size: 12.5px;
36
+ font-weight: bold;
37
+ letter-spacing: 1px;
38
+ line-height: 12.5px;
39
+ padding: 12px 15px 10px 0;
40
+ text-shadow: 0 1px 0 rgba(0,0,0,1);
41
+ }
42
+ .trunk-nav a:hover {
43
+ background-color: rgba(0,0,0,0.075);
44
+ color: rgba(255,255,255,1);
45
+ padding-left: 15px;
46
+ }
47
+ .trunk-account {
48
+ border-top: 1px solid rgba(255,255,255, 0.1);
49
+ margin-top: 10px;
50
+ }
51
+ .trunk-account li {
52
+ float: left;
53
+ margin: 10px 5px 0 0;
54
+ width: 207px;
55
+ }
56
+ .trunk-account li:last-child { margin-right: 0; }
57
+ .trunk-account li a {
58
+ -webkit-border-radius: 3px;
59
+ -moz-border-radius: 3px;
60
+ border-radius: 3px;
61
+ color: rgba(255,255,255,0.8);
62
+ display: block;
63
+ font-size: 12.5px;
64
+ font-weight: bold;
65
+ padding: 5px 0 3px 0;
66
+ text-align: center;
67
+ }
68
+ .trunk-account li a:hover {
69
+ background-color: rgba(0,0,0,0.075);
70
+ color: rgba(255,255,255,1);
71
+ }
72
+
73
+ /* #Media Queries
74
+ ================================================== */
75
+ @media only screen and (max-width: 767px) {
76
+ .trunk-account li { width: 147px; }
77
+ }
78
+ @media only screen and (min-width: 480px) and (max-width: 767px) {
79
+ .trunk-account li { width: 207px; }
80
+ }
@@ -0,0 +1,7 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ #Typeahead */
4
+
5
+ /* #Typeahead
6
+ ================================================== */
7
+ .typeahead { z-index: 1051; }
@@ -0,0 +1,130 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ #Font-Face
4
+ #Typography
5
+ #Alignments
6
+ #Colors
7
+ #Transforms
8
+ #Weights */
9
+
10
+ /* #Font-Face
11
+ ================================================== */
12
+ @font-face {
13
+ font-family: 'Gotham';
14
+ src: url('/fonts/Gotham/Regular/Book/gotham-book.eot');
15
+ src: url('/fonts/Gotham/Regular/Book/gotham-book.eot') format('embedded-opentype'),
16
+ url('/fonts/Gotham/Regular/Book/gotham-book.woff') format('woff'),
17
+ url('/fonts/Gotham/Regular/Book/gotham-book.ttf') format('truetype'),
18
+ url('/fonts/Gotham/Regular/Book/gotham-book.svg#GothamBookRegular') format('svg');
19
+ font-weight: normal;
20
+ font-style: normal;
21
+ }
22
+ @font-face {
23
+ font-family: 'Gotham';
24
+ src: url('/fonts/Gotham/Regular/Medium/gotham-medium.eot');
25
+ src: url('/fonts/Gotham/Regular/Medium/gotham-medium.eot') format('embedded-opentype'),
26
+ url('/fonts/Gotham/Regular/Medium/gotham-medium.woff') format('woff'),
27
+ url('/fonts/Gotham/Regular/Medium/gotham-medium.ttf') format('truetype'),
28
+ url('/fonts/Gotham/Regular/Medium/gotham-medium.svg#GothamMediumRegular') format('svg');
29
+ font-weight: bold;
30
+ font-style: normal;
31
+ }
32
+ @font-face {
33
+ font-family: 'Gotham';
34
+ src: url('/fonts/Gotham/Regular/Light/gotham-light.eot');
35
+ src: url('/fonts/Gotham/Regular/Light/gotham-light.eot') format('embedded-opentype'),
36
+ url('/fonts/Gotham/Regular/Light/gotham-light.woff') format('woff'),
37
+ url('/fonts/Gotham/Regular/Light/gotham-light.ttf') format('truetype'),
38
+ url('/fonts/Gotham/Regular/Light/gotham-light.svg#GothamLightRegular') format('svg');
39
+ font-weight: 200;
40
+ font-style: normal;
41
+ }
42
+
43
+ /* #Typography
44
+ ================================================== */
45
+ h1, h2, h3, h4, h5, h6 {
46
+ color: rgba(43,50,53,1);
47
+ font-family: 'Gotham', 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
48
+ font-weight: bold;
49
+ }
50
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
51
+ h1 { font-size: 46px; line-height: 50px; letter-spacing: 0.5px; margin-bottom: 15px; }
52
+ h2 { font-size: 35px; line-height: 40px; letter-spacing: 0.5px; margin-bottom: 10px; }
53
+ h3 { font-size: 28px; line-height: 34px; letter-spacing: 0.5px; margin-bottom: 8px; }
54
+ h4 { font-size: 21px; line-height: 30px; letter-spacing: 0.5px; margin-bottom: 4px; }
55
+ h5 { font-size: 17px; line-height: 24px; letter-spacing: 0.5px; }
56
+ h6 { font-size: 14px; line-height: 21px; letter-spacing: 0.5px; }
57
+ p {
58
+ font-size: 15.5px;
59
+ line-height: 25px;
60
+ margin: 0 0 20px 0;
61
+ }
62
+ p img { margin: 0; }
63
+ p.lead {
64
+ font-size: 21px;
65
+ font-weight: 200;
66
+ line-height: 27px;
67
+ }
68
+ p.small {
69
+ font-size: 13.5px;
70
+ line-height: 22px;
71
+ }
72
+ p.whitespaced { white-space: pre-wrap; }
73
+ small { font-size: 10.5px; line-height: 17px; }
74
+ strong { font-weight: bold; }
75
+ address { font-size: 15.5px; line-height: 25px; }
76
+ blockquote {
77
+ border-left: 5px solid rgba(236,238,241,1);
78
+ padding-left: 10px;
79
+ }
80
+ blockquote p { margin-bottom: 10px; }
81
+ blockquote small { color: rgba(122,122,122,1); }
82
+ ul, ol {
83
+ font-size: 15.5px;
84
+ line-height: 25px;
85
+ }
86
+ ul { padding-left: 17px; }
87
+ ol { padding-left: 23px; }
88
+ ul.list-small,
89
+ ol.list-small {
90
+ font-size: 13.5px;
91
+ line-height: 22px;
92
+ }
93
+ ul.list-unstyled {
94
+ list-style-type: none;
95
+ padding: 0;
96
+ }
97
+ dl dt,
98
+ dl dd {
99
+ font-size: 15.5px;
100
+ line-height: 25px;
101
+ }
102
+ dl dt {
103
+ font-weight: bold;
104
+ margin-bottom: 5px;
105
+ }
106
+ dl dd { margin: 0 0 5px 10px; }
107
+
108
+ /* #Alignments
109
+ ================================================== */
110
+ .text-left { text-align: left; }
111
+ .text-center { text-align: center; }
112
+ .text-right { text-align: right; }
113
+
114
+ /* #Colors
115
+ ================================================== */
116
+ .text-gray { color: rgba(122,122,122,1); }
117
+ .text-blue { color: rgba(58,135,173,1); }
118
+ .text-green { color: rgba(89,168,15,1); }
119
+ .text-red { color: rgba(199,77,62,1); }
120
+
121
+ /* #Transform
122
+ ================================================== */
123
+ .text-uppercase { text-transform: uppercase; }
124
+ .text-lowercase { text-transform: lowercase; }
125
+
126
+ /* #Weights
127
+ ================================================== */
128
+ .text-light { font-weight: 200; }
129
+ .text-normal { font-weight: normal; }
130
+ .text-bold { font-weight: bold; }
@@ -0,0 +1,27 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ #Wizard */
4
+
5
+ /* #Wizard
6
+ ================================================== */
7
+ .wizard legend { display: none; }
8
+ .wizard input[type="submit"] { margin-top: 0; }
9
+ .wizard-breadcrumb {
10
+ color: rgba(200,200,200,1);
11
+ font-size: 12.5px;
12
+ font-weight: bold;
13
+ list-style-type: none;
14
+ margin: -18px 0 30px 0;
15
+ padding: 0;
16
+ }
17
+ .wizard-breadcrumb li {
18
+ display: inline-block;
19
+ margin-right: 5px;
20
+ }
21
+ .wizard-breadcrumb li:last-child { margin-right: 0; }
22
+ .wizard-breadcrumb li.active { color: rgba(43,50,53,1); }
23
+ .wizard-breadcrumb a {
24
+ color: rgba(200,200,200,1);
25
+ text-decoration: none;
26
+ }
27
+ .wizard-breadcrumb a:hover { color: rgba(58,135,173,1); }
metadata ADDED
@@ -0,0 +1,134 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: quantum
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Juan Gomez
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-09-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Quantum is a refreshingly modern responsive web framework for beautiful
42
+ and faster project development.
43
+ email:
44
+ - hello@drexed.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - .gitignore
50
+ - .project
51
+ - Gemfile
52
+ - LICENSE.txt
53
+ - README.md
54
+ - Rakefile
55
+ - lib/quantum.rb
56
+ - lib/quantum/version.rb
57
+ - quantum.gemspec
58
+ - vendor/assets/.keep
59
+ - vendor/assets/javascripts/alert.js
60
+ - vendor/assets/javascripts/chart.js
61
+ - vendor/assets/javascripts/collapse.js
62
+ - vendor/assets/javascripts/date_picker.js
63
+ - vendor/assets/javascripts/dropdown.js
64
+ - vendor/assets/javascripts/file_input.js
65
+ - vendor/assets/javascripts/input_mask.js
66
+ - vendor/assets/javascripts/map.js
67
+ - vendor/assets/javascripts/modal.js
68
+ - vendor/assets/javascripts/popover.js
69
+ - vendor/assets/javascripts/qrcode.js
70
+ - vendor/assets/javascripts/qrcoder.js
71
+ - vendor/assets/javascripts/tab.js
72
+ - vendor/assets/javascripts/time_picker.js
73
+ - vendor/assets/javascripts/tooltip.js
74
+ - vendor/assets/javascripts/transitions.js
75
+ - vendor/assets/javascripts/typeahead.js
76
+ - vendor/assets/javascripts/wizard.js
77
+ - vendor/assets/stylesheets/alert.css.scss
78
+ - vendor/assets/stylesheets/breadcrumb.css.scss
79
+ - vendor/assets/stylesheets/button.css.scss
80
+ - vendor/assets/stylesheets/chart.css.scss
81
+ - vendor/assets/stylesheets/code.css.scss
82
+ - vendor/assets/stylesheets/collapse.css.scss
83
+ - vendor/assets/stylesheets/datepicker.css.scss
84
+ - vendor/assets/stylesheets/dropdown.css.scss
85
+ - vendor/assets/stylesheets/file_input.css.scss
86
+ - vendor/assets/stylesheets/footer.css.scss
87
+ - vendor/assets/stylesheets/form.css.scss
88
+ - vendor/assets/stylesheets/grid.css.scss
89
+ - vendor/assets/stylesheets/header.css.scss
90
+ - vendor/assets/stylesheets/icon.css.scss
91
+ - vendor/assets/stylesheets/image.css.scss
92
+ - vendor/assets/stylesheets/label_and_badge.css.scss
93
+ - vendor/assets/stylesheets/link.css.scss
94
+ - vendor/assets/stylesheets/map.css.scss
95
+ - vendor/assets/stylesheets/modal.css.scss
96
+ - vendor/assets/stylesheets/pagination.css.scss
97
+ - vendor/assets/stylesheets/popover.css.scss
98
+ - vendor/assets/stylesheets/progress.css.scss
99
+ - vendor/assets/stylesheets/qrcode.css.scss
100
+ - vendor/assets/stylesheets/reset.css.scss
101
+ - vendor/assets/stylesheets/tab.css.scss
102
+ - vendor/assets/stylesheets/table.css.scss
103
+ - vendor/assets/stylesheets/timepicker.css.scss
104
+ - vendor/assets/stylesheets/tooltip.css.scss
105
+ - vendor/assets/stylesheets/transitions.css.scss
106
+ - vendor/assets/stylesheets/trunk.css.scss
107
+ - vendor/assets/stylesheets/typeahead.css.scss
108
+ - vendor/assets/stylesheets/typography.css.scss
109
+ - vendor/assets/stylesheets/wizard.css.scss
110
+ homepage: https://github.com/drexed/quantum
111
+ licenses:
112
+ - MIT
113
+ metadata: {}
114
+ post_install_message:
115
+ rdoc_options: []
116
+ require_paths:
117
+ - lib
118
+ required_ruby_version: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - '>='
121
+ - !ruby/object:Gem::Version
122
+ version: '0'
123
+ required_rubygems_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - '>='
126
+ - !ruby/object:Gem::Version
127
+ version: '0'
128
+ requirements: []
129
+ rubyforge_project:
130
+ rubygems_version: 2.0.7
131
+ signing_key:
132
+ specification_version: 4
133
+ summary: Quantum Responsive Web Framework
134
+ test_files: []