flashoff 0.0.1

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 (73) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +74 -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 +1390 -0
  25. data/app/assets/fonts/ionicons/ionicons.ttf +0 -0
  26. data/app/assets/fonts/ionicons/ionicons.woff +0 -0
  27. data/flashoff.gemspec +23 -0
  28. data/lib/flashoff/version.rb +3 -0
  29. data/lib/flashoff.rb +5 -0
  30. data/vendor/assets/javascripts/alert.js +78 -0
  31. data/vendor/assets/javascripts/collapse.js +159 -0
  32. data/vendor/assets/javascripts/date_picker.js +1385 -0
  33. data/vendor/assets/javascripts/dropdown.js +134 -0
  34. data/vendor/assets/javascripts/file_input.js +88 -0
  35. data/vendor/assets/javascripts/map.js +2036 -0
  36. data/vendor/assets/javascripts/modal.js +226 -0
  37. data/vendor/assets/javascripts/popover.js +97 -0
  38. data/vendor/assets/javascripts/tab.js +115 -0
  39. data/vendor/assets/javascripts/time_picker.js +878 -0
  40. data/vendor/assets/javascripts/tooltip.js +365 -0
  41. data/vendor/assets/javascripts/transition.js +36 -0
  42. data/vendor/assets/stylesheets/ad.css.scss +72 -0
  43. data/vendor/assets/stylesheets/alert.css.scss +57 -0
  44. data/vendor/assets/stylesheets/breadcrumb.css.scss +26 -0
  45. data/vendor/assets/stylesheets/button.css.scss +183 -0
  46. data/vendor/assets/stylesheets/code.css.scss +49 -0
  47. data/vendor/assets/stylesheets/collapse.css.scss +15 -0
  48. data/vendor/assets/stylesheets/datepicker.css.scss +104 -0
  49. data/vendor/assets/stylesheets/dropdown.css.scss +84 -0
  50. data/vendor/assets/stylesheets/footer.css.scss +33 -0
  51. data/vendor/assets/stylesheets/form.css.scss +213 -0
  52. data/vendor/assets/stylesheets/grid.css.scss +291 -0
  53. data/vendor/assets/stylesheets/header.css.scss +134 -0
  54. data/vendor/assets/stylesheets/icon.css.scss +972 -0
  55. data/vendor/assets/stylesheets/image.css.scss +39 -0
  56. data/vendor/assets/stylesheets/label_and_badge.css.scss +53 -0
  57. data/vendor/assets/stylesheets/link.css.scss +19 -0
  58. data/vendor/assets/stylesheets/list.css.scss +38 -0
  59. data/vendor/assets/stylesheets/map.css.scss +13 -0
  60. data/vendor/assets/stylesheets/modal.css.scss +117 -0
  61. data/vendor/assets/stylesheets/pagination.css.scss +37 -0
  62. data/vendor/assets/stylesheets/placeholder.css.scss +11 -0
  63. data/vendor/assets/stylesheets/popover.css.scss +107 -0
  64. data/vendor/assets/stylesheets/progress.css.scss +25 -0
  65. data/vendor/assets/stylesheets/reset.css.scss +57 -0
  66. data/vendor/assets/stylesheets/tab.css.scss +165 -0
  67. data/vendor/assets/stylesheets/table.css.scss +70 -0
  68. data/vendor/assets/stylesheets/timepicker.css.scss +69 -0
  69. data/vendor/assets/stylesheets/tooltip.css.scss +81 -0
  70. data/vendor/assets/stylesheets/transition.css.scss +12 -0
  71. data/vendor/assets/stylesheets/trunk.css.scss +69 -0
  72. data/vendor/assets/stylesheets/typography.css.scss +147 -0
  73. metadata +144 -0
@@ -0,0 +1,70 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ #Table */
4
+
5
+ /* #Table
6
+ ================================================== */
7
+ table {
8
+ background-color: transparent;
9
+ border-collapse: collapse;
10
+ border-spacing: 0;
11
+ max-width: 100%;
12
+ }
13
+ .table { width: 100%; }
14
+ .table th,
15
+ .table td {
16
+ border-top: 1px solid rgba(217,222,225,1);
17
+ font-size: 16px;
18
+ line-height: 25px;
19
+ padding: 9px 10px 6px 10px;
20
+ text-align: left;
21
+ vertical-align: top;
22
+ }
23
+ .table th {
24
+ background-color: rgba(236,238,241,1);
25
+ color: rgba(71,74,84,1);
26
+ font-size: 14px;
27
+ font-weight: bold;
28
+ }
29
+ .table th a { color: rgba(71,74,84,1); }
30
+ .table th a:hover { text-decoration: underline; }
31
+ .table thead th { vertical-align: bottom; }
32
+ .table caption + thead tr:first-child th,
33
+ .table caption + thead tr:first-child td,
34
+ .table colgroup + thead tr:first-child th,
35
+ .table colgroup + thead tr:first-child td,
36
+ .table thead:first-child tr:first-child th,
37
+ .table thead:first-child tr:first-child td { border-top: 0; }
38
+ .table tbody + tbody { border-top: 2px solid rgba(217,222,225,1); }
39
+ .table .table { background-color: rgba(255,255,255,1); }
40
+ .table-condensed th,
41
+ .table-condensed td {
42
+ font-size: 14px;
43
+ padding: 5px 5px 3px 5px;
44
+ }
45
+ .table-condensed th { font-size: 12px; }
46
+ .table-bordered {
47
+ border: 1px solid rgba(217,222,225,1);
48
+ border-collapse: separate;
49
+ border-left: 0;
50
+ }
51
+ .table-bordered th,
52
+ .table-bordered td { border-left: 1px solid rgba(217,222,225,1); }
53
+ .table-bordered caption + thead tr:first-child th,
54
+ .table-bordered caption + tbody tr:first-child th,
55
+ .table-bordered caption + tbody tr:first-child td,
56
+ .table-bordered colgroup + thead tr:first-child th,
57
+ .table-bordered colgroup + tbody tr:first-child th,
58
+ .table-bordered colgroup + tbody tr:first-child td,
59
+ .table-bordered thead:first-child tr:first-child th,
60
+ .table-bordered tbody:first-child tr:first-child th,
61
+ .table-bordered tbody:first-child tr:first-child td { border-top: 0; }
62
+ .table-striped tbody > tr:nth-child(odd) > td,
63
+ .table-striped tbody > tr:nth-child(odd) > th { background-color: rgba(246,247,249,1); }
64
+ .table-hover tbody tr:hover > td,
65
+ .table-hover tbody tr:hover > th { background-color: rgba(240,241,244,1); }
66
+ .table-unbordered,
67
+ .table-unbordered thead,
68
+ .table-unbordered tbody,
69
+ .table-unbordered th,
70
+ .table-unbordered td { border: 0; }
@@ -0,0 +1,69 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ #Timepicker
4
+ #Media Queries */
5
+
6
+ /* #Timepicker
7
+ ================================================== */
8
+ .timepicker { position: relative; }
9
+ .timepicker .add-on i { display: inline-block; }
10
+ .timepicker-widget.dropdown-menu { padding: 5px 1px 5px 0; }
11
+ .timepicker-widget.dropdown-menu.open { display: inline-block; }
12
+ .timepicker-widget.dropdown-menu:before {
13
+ border-bottom: 7px solid rgba(246,247,249,1);
14
+ border-right: 7px solid transparent;
15
+ border-left: 7px solid transparent;
16
+ content: "";
17
+ display: inline-block;
18
+ left: 9px;
19
+ position: absolute;
20
+ top: -7px;
21
+ }
22
+ .timepicker-widget.dropdown-menu:after {
23
+ border-bottom: 6px solid rgba(246,247,249,1);
24
+ border-right: 6px solid transparent;
25
+ border-left: 6px solid transparent;
26
+ content: "";
27
+ display: inline-block;
28
+ left: 10px;
29
+ position: absolute;
30
+ top: -6px;
31
+ }
32
+ .timepicker-widget a.btn,
33
+ .timepicker-widget input { border-radius: 3px; }
34
+ .timepicker-widget table {
35
+ margin: 0;
36
+ width: 100%;
37
+ }
38
+ .timepicker-widget table td {
39
+ text-align: center;
40
+ height: 30px;
41
+ margin: 0;
42
+ }
43
+ .timepicker-widget table td:not(.separator) { min-width: 30px; }
44
+ .timepicker-widget table td span { width: 100%; }
45
+ .timepicker-widget table td a {
46
+ color: rgba(43,50,53,1);
47
+ display: inline-block;
48
+ margin: 0;
49
+ padding: 8px 0px;
50
+ outline: 0;
51
+ width: 100%;
52
+ }
53
+ .timepicker-widget table td a:hover {
54
+ color: rgba(58,144,216,1);
55
+ text-decoration: none;
56
+ }
57
+ .timepicker-widget table td input {
58
+ margin: 0;
59
+ text-align: center;
60
+ width: 25px;
61
+ }
62
+ .timepicker-widget .modal-content { padding: 4px; }
63
+
64
+ /* #Media Queries
65
+ ================================================== */
66
+ @media only screen and (max-width: 767px) {
67
+ .timepicker { width: 100%; }
68
+ .timepicker .dropdown-menu { width: 100%; }
69
+ }
@@ -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,147 @@
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
+
13
+ /* #Font-Face
14
+ ================================================== */
15
+ @font-face {
16
+ font-family: 'Gotham';
17
+ font-style: normal;
18
+ font-weight: normal;
19
+ src: url(font_path('gotham/gotham-book.eot'));
20
+ src: url(font_path('gotham/gotham-book.eot')) format('embedded-opentype'),
21
+ url(font_path('gotham/gotham-book.woff')) format('woff'),
22
+ url(font_path('gotham/gotham-book.ttf')) format('truetype'),
23
+ url(font_path('gotham/gotham-book.svg#GothamBookRegular')) format('svg');
24
+ }
25
+ @font-face {
26
+ font-family: 'Gotham';
27
+ font-style: normal;
28
+ font-weight: bold;
29
+ src: url(font_path('gotham/gotham-bold.eot'));
30
+ src: url(font_path('gotham/gotham-bold.eot')) format('embedded-opentype'),
31
+ url(font_path('gotham/gotham-bold.woff')) format('woff'),
32
+ url(font_path('gotham/gotham-bold.ttf')) format('truetype'),
33
+ url(font_path('gotham/gotham-bold.svg#GothamBoldRegular')) format('svg');
34
+ }
35
+ @font-face {
36
+ font-family: 'Gotham';
37
+ font-style: normal;
38
+ font-weight: 500;
39
+ src: url(font_path('gotham/gotham-medium.eot'));
40
+ src: url(font_path('gotham/gotham-medium.eot')) format('embedded-opentype'),
41
+ url(font_path('gotham/gotham-medium.woff')) format('woff'),
42
+ url(font_path('gotham/gotham-medium.ttf')) format('truetype'),
43
+ url(font_path('gotham/gotham-medium.svg#GothamMediumRegular')) format('svg');
44
+ }
45
+ @font-face {
46
+ font-family: 'Gotham';
47
+ font-style: normal;
48
+ font-weight: 200;
49
+ src: url(font_path('gotham/gotham-light.eot'));
50
+ src: url(font_path('gotham/gotham-light.eot')) format('embedded-opentype'),
51
+ url(font_path('gotham/gotham-light.woff')) format('woff'),
52
+ url(font_path('gotham/gotham-light.ttf')) format('truetype'),
53
+ url(font_path('gotham/gotham-light.svg#GothamLightRegular')) format('svg');
54
+ }
55
+
56
+ /* #Typography
57
+ ================================================== */
58
+ h1, h2, h3, h4, h5, h6 {
59
+ color: rgba(71,74,84,1);
60
+ font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif;
61
+ font-weight: bold;
62
+ }
63
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
64
+ h1 { font-size: 46px; line-height: 50px; margin-bottom: 15px; }
65
+ h2 { font-size: 35px; line-height: 40px; margin-bottom: 10px; }
66
+ h3 { font-size: 28px; line-height: 34px; margin-bottom: 8px; }
67
+ h4 { font-size: 21px; line-height: 30px; margin-bottom: 4px; }
68
+ h5 { font-size: 17px; line-height: 24px; }
69
+ h6 { font-size: 14px; line-height: 21px; }
70
+ p {
71
+ font-size: 16px;
72
+ line-height: 25px;
73
+ margin: 0 0 20px 0;
74
+ }
75
+ p.large,
76
+ p.lead {
77
+ font-size: 28px;
78
+ line-height: 34px;
79
+ margin-bottom: 30px;
80
+ }
81
+ p.lead { font-weight: 200; }
82
+ p.medium {
83
+ font-size: 21px;
84
+ line-height: 27px;
85
+ }
86
+ p.small {
87
+ font-size: 14px;
88
+ line-height: 22px;
89
+ }
90
+ p.whitespaced { white-space: pre-wrap; }
91
+ p img { margin: 0; }
92
+ small {
93
+ font-size: 11px;
94
+ line-height: 17px;
95
+ }
96
+ strong { font-weight: 500; }
97
+ address {
98
+ font-size: 16px;
99
+ line-height: 25px;
100
+ }
101
+ blockquote {
102
+ border-left: 5px solid rgba(58,144,216,1);
103
+ padding-left: 10px;
104
+ }
105
+ blockquote p { margin-bottom: 10px; }
106
+ blockquote small { color: rgba(158,171,179,1); }
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(158,171,179,1); }
117
+ .text-blue { color: rgba(58,144,216,1); }
118
+ .text-red { color: rgba(254,79,50,1); }
119
+ .text-green { color: rgba(122,179,23,1); }
120
+
121
+ /* #Scripts
122
+ ================================================== */
123
+ .text-sans-serif { font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif; }
124
+ .text-serif { font-family: 'Times New Roman', Times, serif; }
125
+
126
+ /* #Style
127
+ ================================================== */
128
+ .text-italic { font-style: italic; }
129
+ .text-normal { font-style: normal; }
130
+
131
+ /* #Decorations
132
+ ================================================== */
133
+ .text-overline { text-decoration: overline; }
134
+ .text-line-through { text-decoration: line-through; }
135
+ .text-underline { text-decoration: underline; }
136
+
137
+ /* #Transform
138
+ ================================================== */
139
+ .text-uppercase { text-transform: uppercase; }
140
+ .text-lowercase { text-transform: lowercase; }
141
+
142
+ /* #Weights
143
+ ================================================== */
144
+ .text-light { font-weight: 200; }
145
+ .text-normal { font-weight: normal; }
146
+ .text-medium { font-weight: 500; }
147
+ .text-bold { font-weight: bold; }
metadata ADDED
@@ -0,0 +1,144 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: flashoff
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Juan Gomez
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-11-27 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: Flashoff 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
+ - .gitignore
50
+ - Gemfile
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
+ - flashoff.gemspec
75
+ - lib/flashoff.rb
76
+ - lib/flashoff/version.rb
77
+ - vendor/assets/javascripts/alert.js
78
+ - vendor/assets/javascripts/collapse.js
79
+ - vendor/assets/javascripts/date_picker.js
80
+ - vendor/assets/javascripts/dropdown.js
81
+ - vendor/assets/javascripts/file_input.js
82
+ - vendor/assets/javascripts/map.js
83
+ - vendor/assets/javascripts/modal.js
84
+ - vendor/assets/javascripts/popover.js
85
+ - vendor/assets/javascripts/tab.js
86
+ - vendor/assets/javascripts/time_picker.js
87
+ - vendor/assets/javascripts/tooltip.js
88
+ - vendor/assets/javascripts/transition.js
89
+ - vendor/assets/stylesheets/ad.css.scss
90
+ - vendor/assets/stylesheets/alert.css.scss
91
+ - vendor/assets/stylesheets/breadcrumb.css.scss
92
+ - vendor/assets/stylesheets/button.css.scss
93
+ - vendor/assets/stylesheets/code.css.scss
94
+ - vendor/assets/stylesheets/collapse.css.scss
95
+ - vendor/assets/stylesheets/datepicker.css.scss
96
+ - vendor/assets/stylesheets/dropdown.css.scss
97
+ - vendor/assets/stylesheets/footer.css.scss
98
+ - vendor/assets/stylesheets/form.css.scss
99
+ - vendor/assets/stylesheets/grid.css.scss
100
+ - vendor/assets/stylesheets/header.css.scss
101
+ - vendor/assets/stylesheets/icon.css.scss
102
+ - vendor/assets/stylesheets/image.css.scss
103
+ - vendor/assets/stylesheets/label_and_badge.css.scss
104
+ - vendor/assets/stylesheets/link.css.scss
105
+ - vendor/assets/stylesheets/list.css.scss
106
+ - vendor/assets/stylesheets/map.css.scss
107
+ - vendor/assets/stylesheets/modal.css.scss
108
+ - vendor/assets/stylesheets/pagination.css.scss
109
+ - vendor/assets/stylesheets/placeholder.css.scss
110
+ - vendor/assets/stylesheets/popover.css.scss
111
+ - vendor/assets/stylesheets/progress.css.scss
112
+ - vendor/assets/stylesheets/reset.css.scss
113
+ - vendor/assets/stylesheets/tab.css.scss
114
+ - vendor/assets/stylesheets/table.css.scss
115
+ - vendor/assets/stylesheets/timepicker.css.scss
116
+ - vendor/assets/stylesheets/tooltip.css.scss
117
+ - vendor/assets/stylesheets/transition.css.scss
118
+ - vendor/assets/stylesheets/trunk.css.scss
119
+ - vendor/assets/stylesheets/typography.css.scss
120
+ homepage: http://flashoff.drexed.com
121
+ licenses:
122
+ - MIT
123
+ metadata: {}
124
+ post_install_message:
125
+ rdoc_options: []
126
+ require_paths:
127
+ - lib
128
+ required_ruby_version: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - '>='
131
+ - !ruby/object:Gem::Version
132
+ version: '0'
133
+ required_rubygems_version: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - '>='
136
+ - !ruby/object:Gem::Version
137
+ version: '0'
138
+ requirements: []
139
+ rubyforge_project:
140
+ rubygems_version: 2.1.11
141
+ signing_key:
142
+ specification_version: 4
143
+ summary: Flashoff Responsive Web Framework
144
+ test_files: []