flashgrid 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +4 -0
  3. data/Gemfile.lock +17 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +78 -0
  6. data/Rakefile +1 -0
  7. data/app/assets/fonts/gotham/gotham-bold.eot +0 -0
  8. data/app/assets/fonts/gotham/gotham-bold.svg +2066 -0
  9. data/app/assets/fonts/gotham/gotham-bold.ttf +0 -0
  10. data/app/assets/fonts/gotham/gotham-bold.woff +0 -0
  11. data/app/assets/fonts/gotham/gotham-book.eot +0 -0
  12. data/app/assets/fonts/gotham/gotham-book.svg +631 -0
  13. data/app/assets/fonts/gotham/gotham-book.ttf +0 -0
  14. data/app/assets/fonts/gotham/gotham-book.woff +0 -0
  15. data/app/assets/fonts/gotham/gotham-light.eot +0 -0
  16. data/app/assets/fonts/gotham/gotham-light.svg +635 -0
  17. data/app/assets/fonts/gotham/gotham-light.ttf +0 -0
  18. data/app/assets/fonts/gotham/gotham-light.woff +0 -0
  19. data/app/assets/fonts/gotham/gotham-medium.eot +0 -0
  20. data/app/assets/fonts/gotham/gotham-medium.svg +629 -0
  21. data/app/assets/fonts/gotham/gotham-medium.ttf +0 -0
  22. data/app/assets/fonts/gotham/gotham-medium.woff +0 -0
  23. data/app/assets/fonts/ionicons/ionicons.eot +0 -0
  24. data/app/assets/fonts/ionicons/ionicons.svg +1623 -0
  25. data/app/assets/fonts/ionicons/ionicons.ttf +0 -0
  26. data/app/assets/fonts/ionicons/ionicons.woff +0 -0
  27. data/flashgrid.gemspec +23 -0
  28. data/lib/flashgrid.rb +6 -0
  29. data/lib/flashgrid/version.rb +3 -0
  30. data/vendor/assets/javascripts/affix.js +127 -0
  31. data/vendor/assets/javascripts/alert.js +78 -0
  32. data/vendor/assets/javascripts/collapse.js +159 -0
  33. data/vendor/assets/javascripts/date_picker.js +1645 -0
  34. data/vendor/assets/javascripts/dropdown.js +134 -0
  35. data/vendor/assets/javascripts/file_input.js +94 -0
  36. data/vendor/assets/javascripts/map.js +2065 -0
  37. data/vendor/assets/javascripts/modal.js +226 -0
  38. data/vendor/assets/javascripts/popover.js +97 -0
  39. data/vendor/assets/javascripts/switch.js +346 -0
  40. data/vendor/assets/javascripts/tab.js +115 -0
  41. data/vendor/assets/javascripts/time_picker.js +1087 -0
  42. data/vendor/assets/javascripts/tooltip.js +365 -0
  43. data/vendor/assets/javascripts/transition.js +36 -0
  44. data/vendor/assets/stylesheets/ad.css.scss +72 -0
  45. data/vendor/assets/stylesheets/affix.css.scss +7 -0
  46. data/vendor/assets/stylesheets/alert.css.scss +72 -0
  47. data/vendor/assets/stylesheets/breadcrumb.css.scss +26 -0
  48. data/vendor/assets/stylesheets/button.css.scss +227 -0
  49. data/vendor/assets/stylesheets/code.css.scss +49 -0
  50. data/vendor/assets/stylesheets/collapse.css.scss +15 -0
  51. data/vendor/assets/stylesheets/datepicker.css.scss +122 -0
  52. data/vendor/assets/stylesheets/dropdown.css.scss +83 -0
  53. data/vendor/assets/stylesheets/footer.css.scss +33 -0
  54. data/vendor/assets/stylesheets/form.css.scss +213 -0
  55. data/vendor/assets/stylesheets/grid.css.scss +291 -0
  56. data/vendor/assets/stylesheets/header.css.scss +134 -0
  57. data/vendor/assets/stylesheets/icon.css.scss +1130 -0
  58. data/vendor/assets/stylesheets/image.css.scss +108 -0
  59. data/vendor/assets/stylesheets/label_and_badge.css.scss +53 -0
  60. data/vendor/assets/stylesheets/link.css.scss +21 -0
  61. data/vendor/assets/stylesheets/list.css.scss +38 -0
  62. data/vendor/assets/stylesheets/map.css.scss +13 -0
  63. data/vendor/assets/stylesheets/modal.css.scss +117 -0
  64. data/vendor/assets/stylesheets/pagination.css.scss +37 -0
  65. data/vendor/assets/stylesheets/placeholder.css.scss +27 -0
  66. data/vendor/assets/stylesheets/popover.css.scss +107 -0
  67. data/vendor/assets/stylesheets/progress.css.scss +25 -0
  68. data/vendor/assets/stylesheets/reset.css.scss +56 -0
  69. data/vendor/assets/stylesheets/switch.css.scss +73 -0
  70. data/vendor/assets/stylesheets/tab.css.scss +179 -0
  71. data/vendor/assets/stylesheets/table.css.scss +73 -0
  72. data/vendor/assets/stylesheets/timepicker.css.scss +81 -0
  73. data/vendor/assets/stylesheets/tooltip.css.scss +81 -0
  74. data/vendor/assets/stylesheets/transition.css.scss +12 -0
  75. data/vendor/assets/stylesheets/trunk.css.scss +69 -0
  76. data/vendor/assets/stylesheets/typography.css.scss +160 -0
  77. metadata +148 -0
@@ -0,0 +1,81 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ #Tooltip */
4
+
5
+ /* #Tooltip
6
+ ================================================== */
7
+ .tooltip {
8
+ display: block;
9
+ font-size: 11px;
10
+ font-weight: bold;
11
+ line-height: 17px;
12
+ opacity: 0;
13
+ filter: alpha(opacity=0);
14
+ position: absolute;
15
+ visibility: visible;
16
+ z-index: 1030;
17
+ }
18
+ .tooltip.in {
19
+ opacity: 0.8;
20
+ filter: alpha(opacity=80);
21
+ }
22
+ .tooltip.top {
23
+ margin-top: -3px;
24
+ padding: 5px 0;
25
+ }
26
+ .tooltip.right {
27
+ margin-left: 3px;
28
+ padding: 0 5px;
29
+ }
30
+ .tooltip.bottom {
31
+ margin-top: 3px;
32
+ padding: 5px 0;
33
+ }
34
+ .tooltip.left {
35
+ margin-left: -3px;
36
+ padding: 0 5px;
37
+ }
38
+ .tooltip-inner {
39
+ background-color: rgba(71,74,84,1);
40
+ border-radius: 3px;
41
+ color: rgba(255,255,255,1);
42
+ max-width: 200px;
43
+ padding: 6px 10px 4px 10px;
44
+ text-align: center;
45
+ text-decoration: none;
46
+ }
47
+ .tooltip-arrow {
48
+ border-color: transparent;
49
+ border-style: solid;
50
+ height: 0;
51
+ position: absolute;
52
+ width: 0;
53
+ }
54
+ .tooltip.top .tooltip-arrow {
55
+ border-top-color: rgba(71,74,84,1);
56
+ border-width: 5px 5px 0;
57
+ bottom: 0;
58
+ left: 50%;
59
+ margin-left: -5px;
60
+ }
61
+ .tooltip.right .tooltip-arrow {
62
+ border-right-color: rgba(71,74,84,1);
63
+ border-width: 5px 5px 5px 0;
64
+ left: 0;
65
+ margin-top: -5px;
66
+ top: 50%;
67
+ }
68
+ .tooltip.left .tooltip-arrow {
69
+ border-left-color: rgba(71,74,84,1);
70
+ border-width: 5px 0 5px 5px;
71
+ margin-top: -5px;
72
+ right: 0;
73
+ top: 50%;
74
+ }
75
+ .tooltip.bottom .tooltip-arrow {
76
+ border-bottom-color: rgba(71,74,84,1);
77
+ border-width: 0 5px 5px;
78
+ left: 50%;
79
+ margin-left: -5px;
80
+ top: 0;
81
+ }
@@ -0,0 +1,12 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ #Transition */
4
+
5
+ /* #Transition
6
+ ================================================== */
7
+ .fade {
8
+ opacity: 0;
9
+ -webkit-transition: opacity 0.15s linear;
10
+ transition: opacity 0.15s linear;
11
+ }
12
+ .fade.in { opacity: 1; }
@@ -0,0 +1,69 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ #Trunk
4
+ #Media Queries */
5
+
6
+ /* #Trunk
7
+ ================================================== */
8
+ .trunk {
9
+ background-color: rgba(58,144,216,1);
10
+ margin: -40px 0 40px 0;
11
+ width: 100%;
12
+ }
13
+ .trunk-buffer { padding: 30px 0; }
14
+ .trunk-search input {
15
+ background-color: transparent;
16
+ border-color: rgba(255,255,255,0.25);
17
+ color: rgba(255,255,255,1);
18
+ font-weight: 200;
19
+ }
20
+ .trunk-search input:focus { border-color: rgba(255,255,255,1); }
21
+ .trunk-search input:-moz-placeholder { color: rgba(255,255,255,0.40); }
22
+ .trunk-search input:-ms-input-placeholder { color: rgba(255,255,255,0.40); }
23
+ .trunk-search input::-webkit-input-placeholder { color: rgba(255,255,255,0.40); }
24
+ .trunk-nav a {
25
+ border-radius: 3px;
26
+ color: rgba(255,255,255,0.8);
27
+ display: block;
28
+ font-size: 13px;
29
+ font-weight: 500;
30
+ line-height: 13px;
31
+ padding: 12px 15px 10px 0;
32
+ }
33
+ .trunk-nav a:hover {
34
+ background-color: rgba(0,0,0,0.075);
35
+ color: rgba(255,255,255,1);
36
+ padding-left: 15px;
37
+ }
38
+ .trunk-account {
39
+ border-top: 1px solid rgba(255,255,255, 0.1);
40
+ margin-top: 10px;
41
+ }
42
+ .trunk-account li {
43
+ float: left;
44
+ margin: 10px 5px 0 0;
45
+ width: 207px;
46
+ }
47
+ .trunk-account li:last-child { margin-right: 0; }
48
+ .trunk-account li a {
49
+ border-radius: 3px;
50
+ color: rgba(255,255,255,0.8);
51
+ display: block;
52
+ font-size: 13px;
53
+ font-weight: 500;
54
+ padding: 5px 0 3px 0;
55
+ text-align: center;
56
+ }
57
+ .trunk-account li a:hover {
58
+ background-color: rgba(0,0,0,0.075);
59
+ color: rgba(255,255,255,1);
60
+ }
61
+
62
+ /* #Media Queries
63
+ ================================================== */
64
+ @media only screen and (max-width: 767px) {
65
+ .trunk-account li { width: 147px; }
66
+ }
67
+ @media only screen and (min-width: 480px) and (max-width: 767px) {
68
+ .trunk-account li { width: 207px; }
69
+ }
@@ -0,0 +1,160 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ #Font-Face
4
+ #Typography
5
+ #Alignments
6
+ #Colors
7
+ #Scripts
8
+ #Styles
9
+ #Decorations
10
+ #Transforms
11
+ #Weights
12
+ #Displays */
13
+
14
+ /* #Font-Face
15
+ ================================================== */
16
+ @font-face {
17
+ font-family: 'Gotham';
18
+ font-style: normal;
19
+ font-weight: normal;
20
+ src: url(font_path('gotham/gotham-book.eot'));
21
+ src: url(font_path('gotham/gotham-book.eot')) format('embedded-opentype'),
22
+ url(font_path('gotham/gotham-book.woff')) format('woff'),
23
+ url(font_path('gotham/gotham-book.ttf')) format('truetype'),
24
+ url(font_path('gotham/gotham-book.svg#GothamBookRegular')) format('svg');
25
+ }
26
+ @font-face {
27
+ font-family: 'Gotham';
28
+ font-style: normal;
29
+ font-weight: bold;
30
+ src: url(font_path('gotham/gotham-bold.eot'));
31
+ src: url(font_path('gotham/gotham-bold.eot')) format('embedded-opentype'),
32
+ url(font_path('gotham/gotham-bold.woff')) format('woff'),
33
+ url(font_path('gotham/gotham-bold.ttf')) format('truetype'),
34
+ url(font_path('gotham/gotham-bold.svg#GothamBoldRegular')) format('svg');
35
+ }
36
+ @font-face {
37
+ font-family: 'Gotham';
38
+ font-style: normal;
39
+ font-weight: 500;
40
+ src: url(font_path('gotham/gotham-medium.eot'));
41
+ src: url(font_path('gotham/gotham-medium.eot')) format('embedded-opentype'),
42
+ url(font_path('gotham/gotham-medium.woff')) format('woff'),
43
+ url(font_path('gotham/gotham-medium.ttf')) format('truetype'),
44
+ url(font_path('gotham/gotham-medium.svg#GothamMediumRegular')) format('svg');
45
+ }
46
+ @font-face {
47
+ font-family: 'Gotham';
48
+ font-style: normal;
49
+ font-weight: 200;
50
+ src: url(font_path('gotham/gotham-light.eot'));
51
+ src: url(font_path('gotham/gotham-light.eot')) format('embedded-opentype'),
52
+ url(font_path('gotham/gotham-light.woff')) format('woff'),
53
+ url(font_path('gotham/gotham-light.ttf')) format('truetype'),
54
+ url(font_path('gotham/gotham-light.svg#GothamLightRegular')) format('svg');
55
+ }
56
+
57
+ /* #Typography
58
+ ================================================== */
59
+ h1, h2, h3, h4, h5, h6 {
60
+ color: rgba(71,74,84,1);
61
+ font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif;
62
+ font-weight: bold;
63
+ }
64
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
65
+ h1 { font-size: 46px; line-height: 50px; margin-bottom: 15px; }
66
+ h2 { font-size: 35px; line-height: 40px; margin-bottom: 10px; }
67
+ h3 { font-size: 28px; line-height: 34px; margin-bottom: 8px; }
68
+ h4 { font-size: 21px; line-height: 30px; margin-bottom: 4px; }
69
+ h5 { font-size: 17px; line-height: 24px; }
70
+ h6 { font-size: 14px; line-height: 21px; }
71
+ p {
72
+ font-size: 16px;
73
+ line-height: 25px;
74
+ margin: 0 0 20px 0;
75
+ }
76
+ p.large,
77
+ p.lead {
78
+ font-size: 28px;
79
+ line-height: 34px;
80
+ margin-bottom: 30px;
81
+ }
82
+ p.lead { font-weight: 200; }
83
+ p.medium {
84
+ font-size: 21px;
85
+ line-height: 27px;
86
+ }
87
+ p.small {
88
+ font-size: 14px;
89
+ line-height: 22px;
90
+ }
91
+ p.whitespaced { white-space: pre-wrap; }
92
+ p img { margin: 0; }
93
+ small {
94
+ font-size: 11px;
95
+ line-height: 17px;
96
+ }
97
+ strong { font-weight: 500; }
98
+ address {
99
+ font-size: 16px;
100
+ line-height: 25px;
101
+ }
102
+ address.small {
103
+ font-size: 14px;
104
+ line-height: 22px;
105
+ }
106
+ blockquote {
107
+ border-left: 5px solid rgba(58,144,216,1);
108
+ padding-left: 10px;
109
+ }
110
+ blockquote p { margin-bottom: 10px; }
111
+ blockquote small { color: rgba(158,171,179,1); }
112
+
113
+ /* #Alignments
114
+ ================================================== */
115
+ .text-left { text-align: left; }
116
+ .text-center { text-align: center; }
117
+ .text-right { text-align: right; }
118
+
119
+ /* #Colors
120
+ ================================================== */
121
+ .text-black { color: rgba(71,74,84,1); }
122
+ .text-blue { color: rgba(58,144,216,1); }
123
+ .text-gray { color: rgba(158,171,179,1); }
124
+ .text-green { color: rgba(122,179,23,1); }
125
+ .text-red { color: rgba(254,79,50,1); }
126
+ .text-white { color: rgba(255,255,255,1); }
127
+
128
+ /* #Scripts
129
+ ================================================== */
130
+ .text-sans-serif { font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif; }
131
+ .text-serif { font-family: 'Times New Roman', Times, serif; }
132
+
133
+ /* #Style
134
+ ================================================== */
135
+ .text-italic { font-style: italic; }
136
+ .text-normal { font-style: normal; }
137
+
138
+ /* #Decorations
139
+ ================================================== */
140
+ .text-overline { text-decoration: overline; }
141
+ .text-line-through { text-decoration: line-through; }
142
+ .text-underline { text-decoration: underline; }
143
+
144
+ /* #Transform
145
+ ================================================== */
146
+ .text-uppercase { text-transform: uppercase; }
147
+ .text-lowercase { text-transform: lowercase; }
148
+
149
+ /* #Weights
150
+ ================================================== */
151
+ .text-light { font-weight: 200; }
152
+ .text-normal { font-weight: normal; }
153
+ .text-medium { font-weight: 500; }
154
+ .text-bold { font-weight: bold; }
155
+
156
+ /* #Displays
157
+ ================================================== */
158
+ .display-block { display: block; }
159
+ .display-inline { display: inline; }
160
+ .display-inline-block { display: inline-block; }
metadata ADDED
@@ -0,0 +1,148 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: flashgrid
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Juan Gomez
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-01-11 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: '10.1'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.1'
41
+ description: Flashgrid is a refreshingly modern responsive web framework for beautiful
42
+ and faster project development.
43
+ email:
44
+ - j.gomez@drexed.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - Gemfile
50
+ - Gemfile.lock
51
+ - LICENSE.txt
52
+ - README.md
53
+ - Rakefile
54
+ - app/assets/fonts/gotham/gotham-bold.eot
55
+ - app/assets/fonts/gotham/gotham-bold.svg
56
+ - app/assets/fonts/gotham/gotham-bold.ttf
57
+ - app/assets/fonts/gotham/gotham-bold.woff
58
+ - app/assets/fonts/gotham/gotham-book.eot
59
+ - app/assets/fonts/gotham/gotham-book.svg
60
+ - app/assets/fonts/gotham/gotham-book.ttf
61
+ - app/assets/fonts/gotham/gotham-book.woff
62
+ - app/assets/fonts/gotham/gotham-light.eot
63
+ - app/assets/fonts/gotham/gotham-light.svg
64
+ - app/assets/fonts/gotham/gotham-light.ttf
65
+ - app/assets/fonts/gotham/gotham-light.woff
66
+ - app/assets/fonts/gotham/gotham-medium.eot
67
+ - app/assets/fonts/gotham/gotham-medium.svg
68
+ - app/assets/fonts/gotham/gotham-medium.ttf
69
+ - app/assets/fonts/gotham/gotham-medium.woff
70
+ - app/assets/fonts/ionicons/ionicons.eot
71
+ - app/assets/fonts/ionicons/ionicons.svg
72
+ - app/assets/fonts/ionicons/ionicons.ttf
73
+ - app/assets/fonts/ionicons/ionicons.woff
74
+ - flashgrid.gemspec
75
+ - lib/flashgrid.rb
76
+ - lib/flashgrid/version.rb
77
+ - vendor/assets/javascripts/affix.js
78
+ - vendor/assets/javascripts/alert.js
79
+ - vendor/assets/javascripts/collapse.js
80
+ - vendor/assets/javascripts/date_picker.js
81
+ - vendor/assets/javascripts/dropdown.js
82
+ - vendor/assets/javascripts/file_input.js
83
+ - vendor/assets/javascripts/map.js
84
+ - vendor/assets/javascripts/modal.js
85
+ - vendor/assets/javascripts/popover.js
86
+ - vendor/assets/javascripts/switch.js
87
+ - vendor/assets/javascripts/tab.js
88
+ - vendor/assets/javascripts/time_picker.js
89
+ - vendor/assets/javascripts/tooltip.js
90
+ - vendor/assets/javascripts/transition.js
91
+ - vendor/assets/stylesheets/ad.css.scss
92
+ - vendor/assets/stylesheets/affix.css.scss
93
+ - vendor/assets/stylesheets/alert.css.scss
94
+ - vendor/assets/stylesheets/breadcrumb.css.scss
95
+ - vendor/assets/stylesheets/button.css.scss
96
+ - vendor/assets/stylesheets/code.css.scss
97
+ - vendor/assets/stylesheets/collapse.css.scss
98
+ - vendor/assets/stylesheets/datepicker.css.scss
99
+ - vendor/assets/stylesheets/dropdown.css.scss
100
+ - vendor/assets/stylesheets/footer.css.scss
101
+ - vendor/assets/stylesheets/form.css.scss
102
+ - vendor/assets/stylesheets/grid.css.scss
103
+ - vendor/assets/stylesheets/header.css.scss
104
+ - vendor/assets/stylesheets/icon.css.scss
105
+ - vendor/assets/stylesheets/image.css.scss
106
+ - vendor/assets/stylesheets/label_and_badge.css.scss
107
+ - vendor/assets/stylesheets/link.css.scss
108
+ - vendor/assets/stylesheets/list.css.scss
109
+ - vendor/assets/stylesheets/map.css.scss
110
+ - vendor/assets/stylesheets/modal.css.scss
111
+ - vendor/assets/stylesheets/pagination.css.scss
112
+ - vendor/assets/stylesheets/placeholder.css.scss
113
+ - vendor/assets/stylesheets/popover.css.scss
114
+ - vendor/assets/stylesheets/progress.css.scss
115
+ - vendor/assets/stylesheets/reset.css.scss
116
+ - vendor/assets/stylesheets/switch.css.scss
117
+ - vendor/assets/stylesheets/tab.css.scss
118
+ - vendor/assets/stylesheets/table.css.scss
119
+ - vendor/assets/stylesheets/timepicker.css.scss
120
+ - vendor/assets/stylesheets/tooltip.css.scss
121
+ - vendor/assets/stylesheets/transition.css.scss
122
+ - vendor/assets/stylesheets/trunk.css.scss
123
+ - vendor/assets/stylesheets/typography.css.scss
124
+ homepage: http://flashgrid.drexed.com
125
+ licenses:
126
+ - MIT
127
+ metadata: {}
128
+ post_install_message:
129
+ rdoc_options: []
130
+ require_paths:
131
+ - lib
132
+ required_ruby_version: !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - ">="
135
+ - !ruby/object:Gem::Version
136
+ version: '0'
137
+ required_rubygems_version: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - ">="
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ requirements: []
143
+ rubyforge_project:
144
+ rubygems_version: 2.2.1
145
+ signing_key:
146
+ specification_version: 4
147
+ summary: Flashgrid Responsive Web Framework
148
+ test_files: []