blueshift 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +74 -0
- data/Rakefile +1 -0
- data/app/assets/fonts/gotham/gotham-bold.eot +0 -0
- data/app/assets/fonts/gotham/gotham-bold.svg +628 -0
- data/app/assets/fonts/gotham/gotham-bold.ttf +0 -0
- data/app/assets/fonts/gotham/gotham-bold.woff +0 -0
- data/app/assets/fonts/gotham/gotham-book.eot +0 -0
- data/app/assets/fonts/gotham/gotham-book.svg +631 -0
- data/app/assets/fonts/gotham/gotham-book.ttf +0 -0
- data/app/assets/fonts/gotham/gotham-book.woff +0 -0
- data/app/assets/fonts/gotham/gotham-light.eot +0 -0
- data/app/assets/fonts/gotham/gotham-light.svg +635 -0
- data/app/assets/fonts/gotham/gotham-light.ttf +0 -0
- data/app/assets/fonts/gotham/gotham-light.woff +0 -0
- data/app/assets/fonts/gotham/gotham-medium.eot +0 -0
- data/app/assets/fonts/gotham/gotham-medium.svg +629 -0
- data/app/assets/fonts/gotham/gotham-medium.ttf +0 -0
- data/app/assets/fonts/gotham/gotham-medium.woff +0 -0
- data/app/assets/fonts/ionicons/ionicons.eot +0 -0
- data/app/assets/fonts/ionicons/ionicons.svg +2254 -0
- data/app/assets/fonts/ionicons/ionicons.ttf +0 -0
- data/app/assets/fonts/ionicons/ionicons.woff +0 -0
- data/blueshift.gemspec +23 -0
- data/lib/blueshift.rb +6 -0
- data/lib/blueshift/version.rb +3 -0
- data/vendor/assets/javascripts/alert.js +99 -0
- data/vendor/assets/javascripts/collapse.js +167 -0
- data/vendor/assets/javascripts/date_picker.js +474 -0
- data/vendor/assets/javascripts/dropdown.js +169 -0
- data/vendor/assets/javascripts/file_input.js +100 -0
- data/vendor/assets/javascripts/map.js +2044 -0
- data/vendor/assets/javascripts/modal (1).js +247 -0
- data/vendor/assets/javascripts/modal.js +247 -0
- data/vendor/assets/javascripts/popover.js +114 -0
- data/vendor/assets/javascripts/tab.js +144 -0
- data/vendor/assets/javascripts/time_picker.js +888 -0
- data/vendor/assets/javascripts/tooltip.js +361 -0
- data/vendor/assets/javascripts/transitions.js +60 -0
- data/vendor/assets/stylesheets/ad.css.scss +72 -0
- data/vendor/assets/stylesheets/alert.css.scss +40 -0
- data/vendor/assets/stylesheets/breadcrumb.css.scss +22 -0
- data/vendor/assets/stylesheets/button.css.scss +202 -0
- data/vendor/assets/stylesheets/code.css.scss +49 -0
- data/vendor/assets/stylesheets/collapse.css.scss +14 -0
- data/vendor/assets/stylesheets/datepicker.css.scss +102 -0
- data/vendor/assets/stylesheets/dropdown.css.scss +84 -0
- data/vendor/assets/stylesheets/footer.css.scss +33 -0
- data/vendor/assets/stylesheets/form.css.scss +207 -0
- data/vendor/assets/stylesheets/grid.css.scss +291 -0
- data/vendor/assets/stylesheets/header.css.scss +134 -0
- data/vendor/assets/stylesheets/icon.css.scss +966 -0
- data/vendor/assets/stylesheets/image.css.scss +39 -0
- data/vendor/assets/stylesheets/label_and_badge.css.scss +53 -0
- data/vendor/assets/stylesheets/link.css.scss +19 -0
- data/vendor/assets/stylesheets/list.css.scss +38 -0
- data/vendor/assets/stylesheets/map.css.scss +13 -0
- data/vendor/assets/stylesheets/modal.css.scss +117 -0
- data/vendor/assets/stylesheets/pagination.css.scss +37 -0
- data/vendor/assets/stylesheets/placeholder.css.scss +11 -0
- data/vendor/assets/stylesheets/popover.css.scss +107 -0
- data/vendor/assets/stylesheets/progress.css.scss +25 -0
- data/vendor/assets/stylesheets/reset.css.scss +57 -0
- data/vendor/assets/stylesheets/tab.css.scss +165 -0
- data/vendor/assets/stylesheets/table.css.scss +70 -0
- data/vendor/assets/stylesheets/timepicker.css.scss +69 -0
- data/vendor/assets/stylesheets/tooltip.css.scss +81 -0
- data/vendor/assets/stylesheets/transitions.css.scss +12 -0
- data/vendor/assets/stylesheets/trunk.css.scss +72 -0
- data/vendor/assets/stylesheets/typography.css.scss +140 -0
- metadata +145 -0
@@ -0,0 +1,72 @@
|
|
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
|
+
left: 0;
|
11
|
+
position: fixed;
|
12
|
+
top: 50px;
|
13
|
+
width: 100%;
|
14
|
+
z-index: 1060;
|
15
|
+
}
|
16
|
+
.trunk-buffer { padding: 30px 0; }
|
17
|
+
.trunk-search input {
|
18
|
+
background-color: transparent;
|
19
|
+
border-color: rgba(255,255,255,0.25);
|
20
|
+
color: rgba(255,255,255,1);
|
21
|
+
font-weight: 200;
|
22
|
+
}
|
23
|
+
.trunk-search input:focus { border-color: rgba(255,255,255,1); }
|
24
|
+
.trunk-search input:-moz-placeholder { color: rgba(255,255,255,0.40); }
|
25
|
+
.trunk-search input:-ms-input-placeholder { color: rgba(255,255,255,0.40); }
|
26
|
+
.trunk-search input::-webkit-input-placeholder { color: rgba(255,255,255,0.40); }
|
27
|
+
.trunk-nav a {
|
28
|
+
border-radius: 3px;
|
29
|
+
color: rgba(255,255,255,0.8);
|
30
|
+
display: block;
|
31
|
+
font-size: 13px;
|
32
|
+
font-weight: 500;
|
33
|
+
line-height: 13px;
|
34
|
+
padding: 12px 15px 10px 0;
|
35
|
+
}
|
36
|
+
.trunk-nav a:hover {
|
37
|
+
background-color: rgba(0,0,0,0.075);
|
38
|
+
color: rgba(255,255,255,1);
|
39
|
+
padding-left: 15px;
|
40
|
+
}
|
41
|
+
.trunk-account {
|
42
|
+
border-top: 1px solid rgba(255,255,255, 0.1);
|
43
|
+
margin-top: 10px;
|
44
|
+
}
|
45
|
+
.trunk-account li {
|
46
|
+
float: left;
|
47
|
+
margin: 10px 5px 0 0;
|
48
|
+
width: 207px;
|
49
|
+
}
|
50
|
+
.trunk-account li:last-child { margin-right: 0; }
|
51
|
+
.trunk-account li a {
|
52
|
+
border-radius: 3px;
|
53
|
+
color: rgba(255,255,255,0.8);
|
54
|
+
display: block;
|
55
|
+
font-size: 13px;
|
56
|
+
font-weight: 500;
|
57
|
+
padding: 5px 0 3px 0;
|
58
|
+
text-align: center;
|
59
|
+
}
|
60
|
+
.trunk-account li a:hover {
|
61
|
+
background-color: rgba(0,0,0,0.075);
|
62
|
+
color: rgba(255,255,255,1);
|
63
|
+
}
|
64
|
+
|
65
|
+
/* #Media Queries
|
66
|
+
================================================== */
|
67
|
+
@media only screen and (max-width: 767px) {
|
68
|
+
.trunk-account li { width: 147px; }
|
69
|
+
}
|
70
|
+
@media only screen and (min-width: 480px) and (max-width: 767px) {
|
71
|
+
.trunk-account li { width: 207px; }
|
72
|
+
}
|
@@ -0,0 +1,140 @@
|
|
1
|
+
/* Table of Contents
|
2
|
+
==================================================
|
3
|
+
#Font-Face
|
4
|
+
#Typography
|
5
|
+
#Alignments
|
6
|
+
#Colors
|
7
|
+
#Scripts
|
8
|
+
#Styles
|
9
|
+
#Transforms
|
10
|
+
#Weights */
|
11
|
+
|
12
|
+
/* #Font-Face
|
13
|
+
================================================== */
|
14
|
+
@font-face {
|
15
|
+
font-family: 'Gotham';
|
16
|
+
font-style: normal;
|
17
|
+
font-weight: normal;
|
18
|
+
src: url(font_path('gotham/gotham-book.eot'));
|
19
|
+
src: url(font_path('gotham/gotham-book.eot')) format('embedded-opentype'),
|
20
|
+
url(font_path('gotham/gotham-book.woff')) format('woff'),
|
21
|
+
url(font_path('gotham/gotham-book.ttf')) format('truetype'),
|
22
|
+
url(font_path('gotham/gotham-book.svg#GothamBookRegular')) format('svg');
|
23
|
+
}
|
24
|
+
@font-face {
|
25
|
+
font-family: 'Gotham';
|
26
|
+
font-style: normal;
|
27
|
+
font-weight: bold;
|
28
|
+
src: url(font_path('gotham/gotham-bold.eot'));
|
29
|
+
src: url(font_path('gotham/gotham-bold.eot')) format('embedded-opentype'),
|
30
|
+
url(font_path('gotham/gotham-bold.woff')) format('woff'),
|
31
|
+
url(font_path('gotham/gotham-bold.ttf')) format('truetype'),
|
32
|
+
url(font_path('gotham/gotham-bold.svg#GothamBoldRegular')) format('svg');
|
33
|
+
}
|
34
|
+
@font-face {
|
35
|
+
font-family: 'Gotham';
|
36
|
+
font-style: normal;
|
37
|
+
font-weight: 500;
|
38
|
+
src: url(font_path('gotham/gotham-medium.eot'));
|
39
|
+
src: url(font_path('gotham/gotham-medium.eot')) format('embedded-opentype'),
|
40
|
+
url(font_path('gotham/gotham-medium.woff')) format('woff'),
|
41
|
+
url(font_path('gotham/gotham-medium.ttf')) format('truetype'),
|
42
|
+
url(font_path('gotham/gotham-medium.svg#GothamMediumRegular')) format('svg');
|
43
|
+
}
|
44
|
+
@font-face {
|
45
|
+
font-family: 'Gotham';
|
46
|
+
font-style: normal;
|
47
|
+
font-weight: 200;
|
48
|
+
src: url(font_path('gotham/gotham-light.eot'));
|
49
|
+
src: url(font_path('gotham/gotham-light.eot')) format('embedded-opentype'),
|
50
|
+
url(font_path('gotham/gotham-light.woff')) format('woff'),
|
51
|
+
url(font_path('gotham/gotham-light.ttf')) format('truetype'),
|
52
|
+
url(font_path('gotham/gotham-light.svg#GothamLightRegular')) format('svg');
|
53
|
+
}
|
54
|
+
|
55
|
+
/* #Typography
|
56
|
+
================================================== */
|
57
|
+
h1, h2, h3, h4, h5, h6 {
|
58
|
+
color: rgba(71,74,84,1);
|
59
|
+
font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif;
|
60
|
+
font-weight: bold;
|
61
|
+
}
|
62
|
+
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
|
63
|
+
h1 { font-size: 46px; line-height: 50px; margin-bottom: 15px; }
|
64
|
+
h2 { font-size: 35px; line-height: 40px; margin-bottom: 10px; }
|
65
|
+
h3 { font-size: 28px; line-height: 34px; margin-bottom: 8px; }
|
66
|
+
h4 { font-size: 21px; line-height: 30px; margin-bottom: 4px; }
|
67
|
+
h5 { font-size: 17px; line-height: 24px; }
|
68
|
+
h6 { font-size: 14px; line-height: 21px; }
|
69
|
+
p {
|
70
|
+
font-size: 16px;
|
71
|
+
line-height: 25px;
|
72
|
+
margin: 0 0 20px 0;
|
73
|
+
}
|
74
|
+
p.large,
|
75
|
+
p.lead {
|
76
|
+
font-size: 28px;
|
77
|
+
line-height: 34px;
|
78
|
+
margin-bottom: 30px;
|
79
|
+
}
|
80
|
+
p.lead { font-weight: 200; }
|
81
|
+
p.medium {
|
82
|
+
font-size: 21px;
|
83
|
+
line-height: 27px;
|
84
|
+
}
|
85
|
+
p.small {
|
86
|
+
font-size: 14px;
|
87
|
+
line-height: 22px;
|
88
|
+
}
|
89
|
+
p.whitespaced { white-space: pre-wrap; }
|
90
|
+
p img { margin: 0; }
|
91
|
+
small {
|
92
|
+
font-size: 11px;
|
93
|
+
line-height: 17px;
|
94
|
+
}
|
95
|
+
strong { font-weight: 500; }
|
96
|
+
address {
|
97
|
+
font-size: 16px;
|
98
|
+
line-height: 25px;
|
99
|
+
}
|
100
|
+
blockquote {
|
101
|
+
border-left: 5px solid rgba(58,144,216,1);
|
102
|
+
padding-left: 10px;
|
103
|
+
}
|
104
|
+
blockquote p { margin-bottom: 10px; }
|
105
|
+
blockquote small { color: rgba(158,171,179,1); }
|
106
|
+
|
107
|
+
/* #Alignments
|
108
|
+
================================================== */
|
109
|
+
.text-left { text-align: left; }
|
110
|
+
.text-center { text-align: center; }
|
111
|
+
.text-right { text-align: right; }
|
112
|
+
|
113
|
+
/* #Colors
|
114
|
+
================================================== */
|
115
|
+
.text-gray { color: rgba(158,171,179,1); }
|
116
|
+
.text-blue { color: rgba(58,144,216,1); }
|
117
|
+
.text-red { color: rgba(254,79,50,1); }
|
118
|
+
.text-green { color: rgba(122,179,23,1); }
|
119
|
+
|
120
|
+
/* #Scripts
|
121
|
+
================================================== */
|
122
|
+
.text-sans-serif { font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif; }
|
123
|
+
.text-serif { font-family: 'Times New Roman', Times, serif; }
|
124
|
+
|
125
|
+
/* #Style
|
126
|
+
================================================== */
|
127
|
+
.text-italic { font-style: italic; }
|
128
|
+
.text-normal { font-style: normal; }
|
129
|
+
|
130
|
+
/* #Transform
|
131
|
+
================================================== */
|
132
|
+
.text-uppercase { text-transform: uppercase; }
|
133
|
+
.text-lowercase { text-transform: lowercase; }
|
134
|
+
|
135
|
+
/* #Weights
|
136
|
+
================================================== */
|
137
|
+
.text-light { font-weight: 200; }
|
138
|
+
.text-normal { font-weight: normal; }
|
139
|
+
.text-medium { font-weight: 500; }
|
140
|
+
.text-bold { font-weight: bold; }
|
metadata
ADDED
@@ -0,0 +1,145 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: blueshift
|
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-22 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: Blueshift 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
|
+
- blueshift.gemspec
|
75
|
+
- lib/blueshift.rb
|
76
|
+
- lib/blueshift/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 (1).js
|
84
|
+
- vendor/assets/javascripts/modal.js
|
85
|
+
- vendor/assets/javascripts/popover.js
|
86
|
+
- vendor/assets/javascripts/tab.js
|
87
|
+
- vendor/assets/javascripts/time_picker.js
|
88
|
+
- vendor/assets/javascripts/tooltip.js
|
89
|
+
- vendor/assets/javascripts/transitions.js
|
90
|
+
- vendor/assets/stylesheets/ad.css.scss
|
91
|
+
- vendor/assets/stylesheets/alert.css.scss
|
92
|
+
- vendor/assets/stylesheets/breadcrumb.css.scss
|
93
|
+
- vendor/assets/stylesheets/button.css.scss
|
94
|
+
- vendor/assets/stylesheets/code.css.scss
|
95
|
+
- vendor/assets/stylesheets/collapse.css.scss
|
96
|
+
- vendor/assets/stylesheets/datepicker.css.scss
|
97
|
+
- vendor/assets/stylesheets/dropdown.css.scss
|
98
|
+
- vendor/assets/stylesheets/footer.css.scss
|
99
|
+
- vendor/assets/stylesheets/form.css.scss
|
100
|
+
- vendor/assets/stylesheets/grid.css.scss
|
101
|
+
- vendor/assets/stylesheets/header.css.scss
|
102
|
+
- vendor/assets/stylesheets/icon.css.scss
|
103
|
+
- vendor/assets/stylesheets/image.css.scss
|
104
|
+
- vendor/assets/stylesheets/label_and_badge.css.scss
|
105
|
+
- vendor/assets/stylesheets/link.css.scss
|
106
|
+
- vendor/assets/stylesheets/list.css.scss
|
107
|
+
- vendor/assets/stylesheets/map.css.scss
|
108
|
+
- vendor/assets/stylesheets/modal.css.scss
|
109
|
+
- vendor/assets/stylesheets/pagination.css.scss
|
110
|
+
- vendor/assets/stylesheets/placeholder.css.scss
|
111
|
+
- vendor/assets/stylesheets/popover.css.scss
|
112
|
+
- vendor/assets/stylesheets/progress.css.scss
|
113
|
+
- vendor/assets/stylesheets/reset.css.scss
|
114
|
+
- vendor/assets/stylesheets/tab.css.scss
|
115
|
+
- vendor/assets/stylesheets/table.css.scss
|
116
|
+
- vendor/assets/stylesheets/timepicker.css.scss
|
117
|
+
- vendor/assets/stylesheets/tooltip.css.scss
|
118
|
+
- vendor/assets/stylesheets/transitions.css.scss
|
119
|
+
- vendor/assets/stylesheets/trunk.css.scss
|
120
|
+
- vendor/assets/stylesheets/typography.css.scss
|
121
|
+
homepage: http://blueshift.drexed.com
|
122
|
+
licenses:
|
123
|
+
- MIT
|
124
|
+
metadata: {}
|
125
|
+
post_install_message:
|
126
|
+
rdoc_options: []
|
127
|
+
require_paths:
|
128
|
+
- lib
|
129
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
130
|
+
requirements:
|
131
|
+
- - '>='
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: '0'
|
134
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - '>='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
requirements: []
|
140
|
+
rubyforge_project:
|
141
|
+
rubygems_version: 2.1.11
|
142
|
+
signing_key:
|
143
|
+
specification_version: 4
|
144
|
+
summary: Blueshift Responsive Web Framework
|
145
|
+
test_files: []
|