pondasee 1.0.rc.2
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +2 -0
- data/README.mkdn +2 -0
- data/VERSION +1 -0
- data/lib/pondasee.rb +1 -0
- data/stylesheets/_pondasee.scss +12 -0
- data/stylesheets/pondasee/_mixins.scss +63 -0
- data/stylesheets/pondasee/_settings.scss +3 -0
- data/stylesheets/pondasee/_variable.scss +97 -0
- data/stylesheets/pondasee/base.scss +24 -0
- data/stylesheets/pondasee/font-awesome.scss +295 -0
- data/stylesheets/pondasee/forms.scss +345 -0
- data/stylesheets/pondasee/grid.scss +37 -0
- data/stylesheets/pondasee/images.scss +168 -0
- data/stylesheets/pondasee/media-queries.scss +56 -0
- data/stylesheets/pondasee/mixins/_basic-buttons.scss +158 -0
- data/stylesheets/pondasee/mixins/_fonts.scss +31 -0
- data/stylesheets/pondasee/mixins/_helper.scss +56 -0
- data/stylesheets/pondasee/mixins/_simple-responsive-grid.scss +66 -0
- data/stylesheets/pondasee/mixins/_zurb-button.scss +105 -0
- data/stylesheets/pondasee/reset.scss +72 -0
- data/stylesheets/pondasee/table.scss +40 -0
- data/stylesheets/pondasee/typography.scss +217 -0
- data/stylesheets/pondasee/utilities.scss +181 -0
- data/templates/project/config.rb +46 -0
- data/templates/project/fonts/fontawesome-webfont.eot +0 -0
- data/templates/project/fonts/fontawesome-webfont.svg +255 -0
- data/templates/project/fonts/fontawesome-webfont.ttf +0 -0
- data/templates/project/fonts/fontawesome-webfont.woff +0 -0
- data/templates/project/humans.txt +42 -0
- data/templates/project/img/button.png +0 -0
- data/templates/project/img/overlay-button.png +0 -0
- data/templates/project/img/select_arrow.gif +0 -0
- data/templates/project/index.html +67 -0
- data/templates/project/js/methods.js +3 -0
- data/templates/project/js/plugins.js +21 -0
- data/templates/project/js/vendor/jquery-1.7.2.min.js +4 -0
- data/templates/project/js/vendor/modernizr-2.5.3.min.js +4 -0
- data/templates/project/js/vendor/nwmatcher-1.2.5-min.js +7 -0
- data/templates/project/js/vendor/selectivizr-min.js +5 -0
- data/templates/project/manifest.rb +52 -0
- data/templates/project/sass/partials/_base.scss +5 -0
- data/templates/project/sass/partials/_font-awesome.scss +5 -0
- data/templates/project/sass/partials/_forms.scss +5 -0
- data/templates/project/sass/partials/_grid.scss +6 -0
- data/templates/project/sass/partials/_ie.scss +7 -0
- data/templates/project/sass/partials/_images.scss +5 -0
- data/templates/project/sass/partials/_main.scss +12 -0
- data/templates/project/sass/partials/_media-queries.scss +6 -0
- data/templates/project/sass/partials/_mixins.scss +7 -0
- data/templates/project/sass/partials/_plugins.scss +4 -0
- data/templates/project/sass/partials/_reset.scss +5 -0
- data/templates/project/sass/partials/_table.scss +5 -0
- data/templates/project/sass/partials/_typography.scss +5 -0
- data/templates/project/sass/partials/_utilities.scss +5 -0
- data/templates/project/sass/partials/main/_footer.scss +10 -0
- data/templates/project/sass/partials/main/_header.scss +10 -0
- data/templates/project/sass/partials/main/_menus.scss +12 -0
- data/templates/project/sass/skins/default.scss +11 -0
- data/templates/project/sass/style.scss +120 -0
- data/templates/project/skins/default.css +3 -0
- data/templates/project/style.css +0 -0
- metadata +137 -0
data/LICENSE
ADDED
data/README.mkdn
ADDED
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0
|
data/lib/pondasee.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
Compass::Frameworks.register("pondasee", :path => "#{File.dirname(__FILE__)}/..")
|
@@ -0,0 +1,12 @@
|
|
1
|
+
@import "compass";
|
2
|
+
@import "pondasee/settings";
|
3
|
+
@import "pondasee/base";
|
4
|
+
@import "pondasee/font-awesome";
|
5
|
+
@import "pondasee/forms";
|
6
|
+
@import "pondasee/grid";
|
7
|
+
@import "pondasee/images";
|
8
|
+
@import "pondasee/media-queries";
|
9
|
+
@import "pondasee/reset";
|
10
|
+
@import "pondasee/table";
|
11
|
+
@import "pondasee/typography";
|
12
|
+
@import "pondasee/utilities";
|
@@ -0,0 +1,63 @@
|
|
1
|
+
@import 'mixins/helper';
|
2
|
+
@import 'mixins/basic-buttons';
|
3
|
+
@import 'mixins/zurb-button';
|
4
|
+
@import 'mixins/fonts';
|
5
|
+
@import 'mixins/simple-responsive-grid';
|
6
|
+
|
7
|
+
// Mixin for set up the baseline
|
8
|
+
// Customize version from:
|
9
|
+
// http://compass-style.org/reference/compass/typography/vertical_rhythm/#mixin-establish-baseline
|
10
|
+
// ------------------
|
11
|
+
@mixin establish-baseline($font-size: $base-font-size) {
|
12
|
+
// IE 6 refuses to resize fonts set in pixels and it weirdly resizes fonts
|
13
|
+
// whose root is set in ems. So we set the root font size in percentages of
|
14
|
+
// the default font size.
|
15
|
+
* html {
|
16
|
+
font-size: 100% * ($font-size / $browser-default-font-size);
|
17
|
+
}
|
18
|
+
html {
|
19
|
+
font-size: $font-size;
|
20
|
+
@include adjust-leading-to(1, if($relative-font-sizing, $font-size, $base-font-size));
|
21
|
+
overflow-y: scroll; /* Keeps page centred in all browsers regardless of content height */
|
22
|
+
-ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
|
23
|
+
-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
|
24
|
+
-webkit-font-smoothing: antialiased; /* http://maxvoltar.com/archive/-Webkit-font-smoothing */
|
25
|
+
}
|
26
|
+
body {
|
27
|
+
background: $backgroundColor;
|
28
|
+
color: $fontColor;
|
29
|
+
@include ff-text;
|
30
|
+
text-rendering: optimizeLegibility; /* http://aestheticallyloyal.com/public/optimize-legibility/ */
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
// Border Radius
|
35
|
+
// Modifed version from http://compass-style.org/reference/compass/css3/border_radius/
|
36
|
+
// -o- and -ms- vendor prefix not exist for border radius
|
37
|
+
$default-rad: 5px !default;
|
38
|
+
|
39
|
+
@mixin border-radius($rad: $default-rad) {
|
40
|
+
-webkit-border-radius : $rad;
|
41
|
+
-moz-border-radius : $rad;
|
42
|
+
border-radius : $rad;
|
43
|
+
}
|
44
|
+
|
45
|
+
// Mixin for cross browser inline-block
|
46
|
+
// http://blog.mozilla.org/webdev/2009/02/20/cross-browser-inline-block/
|
47
|
+
// ------------------
|
48
|
+
@mixin inline-block {
|
49
|
+
display: -moz-inline-stack;
|
50
|
+
-moz-box-orient: vertical;
|
51
|
+
display: inline-block;
|
52
|
+
*display: inline;
|
53
|
+
vertical-align: top;
|
54
|
+
*zoom: 1;
|
55
|
+
}
|
56
|
+
|
57
|
+
// Mixin for cross browser opacity
|
58
|
+
// http://css3please.com/
|
59
|
+
// ------------------
|
60
|
+
@mixin opacity($opacity) {
|
61
|
+
opacity: $opacity; // Chrome 4+, FF2+, Saf3.1+, Opera 9+, IE9, iOS 3.2+, Android 2.1+
|
62
|
+
filter: alpha(opacity=$opacity * 100); // IE6-IE8
|
63
|
+
}
|
@@ -0,0 +1,97 @@
|
|
1
|
+
// Variable
|
2
|
+
// Setup your global variable
|
3
|
+
// =================================================================================
|
4
|
+
|
5
|
+
// Grid & baseline setup
|
6
|
+
// ------------------
|
7
|
+
$base-font-size : 16px;
|
8
|
+
$base-line-height : 24px;
|
9
|
+
$grid-background-baseline-color : rgba(black, .05);
|
10
|
+
$grid-background-column-color : rgba(red, .1);
|
11
|
+
$grid-background-total-columns : 24;
|
12
|
+
$grid-background-column-width : 20px;
|
13
|
+
$grid-background-gutter-width : 20px;
|
14
|
+
|
15
|
+
// Global Palettes
|
16
|
+
// ------------------
|
17
|
+
$black : #000 !default;
|
18
|
+
$blackLight : #222 !default;
|
19
|
+
$blackLighter : #555 !default;
|
20
|
+
$grayDarker : #999 !default;
|
21
|
+
$grayDark : #aaa !default;
|
22
|
+
$gray : #ccc !default;
|
23
|
+
$grayLight : #ddd !default;
|
24
|
+
$grayLighter : #eee !default;
|
25
|
+
$white : #fff !default;
|
26
|
+
$whiteDark : #f5f5f5 !default;
|
27
|
+
$whiteDarker : #f0f0f0 !default;
|
28
|
+
|
29
|
+
// Layout Palettes
|
30
|
+
// -------------------------
|
31
|
+
$backgroundColor : $white !default;
|
32
|
+
$borderColor : $grayLighter !default;
|
33
|
+
$fontColor : $blackLighter !default;
|
34
|
+
$altColor : $gray !default;
|
35
|
+
|
36
|
+
// Link Palettes
|
37
|
+
// -------------------------
|
38
|
+
$linkColor : #00baff !default;
|
39
|
+
$linkHover : darken($linkColor, 10%) !default;
|
40
|
+
$linkVisited : darken($linkHover, 5%) !default;
|
41
|
+
$linkFocus : $linkHover !default;
|
42
|
+
$linkActive : lighten(adjust-hue($linkColor, 75deg), 10%) !default;
|
43
|
+
|
44
|
+
|
45
|
+
// ================================================================================
|
46
|
+
// Font Stack
|
47
|
+
// http://unitinteractive.com/blog/2008/06/26/better-css-font-stacks/
|
48
|
+
// https://github.com/lloydk/font-stack
|
49
|
+
// ================================================================================
|
50
|
+
|
51
|
+
// Serif font-stacks
|
52
|
+
// -------------------------
|
53
|
+
|
54
|
+
$georgia : Georgia, Palatino, "Palatino Linotype", Times, "Times New Roman", serif !default;
|
55
|
+
$georgia-heading : Georgia, Times, "Times New Roman", serif !default;
|
56
|
+
$garamond : Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif !default;
|
57
|
+
$lucida-bright : "Lucida Bright", Georgia, serif !default;
|
58
|
+
$palatino : Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif !default;
|
59
|
+
$big-caslon : "Big Caslon", "Book Antiqua", "Palatino Linotype", Georgia, serif !default;
|
60
|
+
$didot : Didot, "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman", serif !default;
|
61
|
+
$baskerville : Baskerville, "Baskerville old face", "Hoefler Text", Garamond, "Times New Roman", serif !default;
|
62
|
+
$hoefler-text : "Hoefler Text", "Baskerville old face", Garamond, "Times New Roman", serif !default;
|
63
|
+
$bodoni-mt : "Bodoni MT", Didot, "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman", serif !default;
|
64
|
+
$goudy-old-style : "Goudy Old Style", Garamond, "Big Caslon", "Times New Roman", serif !default;
|
65
|
+
$constantia : Constantia, Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif !default;
|
66
|
+
$cambria : Cambria, Georgia, serif !default;
|
67
|
+
$book-antiqua : "Book Antiqua", Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif !default;
|
68
|
+
$times : Times, "Times New Roman", Georgia, serif !default;
|
69
|
+
|
70
|
+
// Sans-Serif font-stacks
|
71
|
+
// -------------------------
|
72
|
+
|
73
|
+
$arial : Arial, "Helvetica Neue", Helvetica, sans-serif !default;
|
74
|
+
$optima : Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif !default;
|
75
|
+
$futura : Futura, "Trebuchet MS", Arial, sans-serif !default;
|
76
|
+
$gill-sans : "Gill Sans", "Gill Sans MT", Calibri, sans-serif !default;
|
77
|
+
$trebuchet : "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif !default;
|
78
|
+
$helvetica : "Helvetica Neue", Arial, Helvetica, sans-serif !default;
|
79
|
+
$verdana : Verdana, Geneva, sans-serif !default;
|
80
|
+
$lucida-grande : "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif !default;
|
81
|
+
$geneva : Geneva, Tahoma, Verdana, sans-serif !default;
|
82
|
+
$segoe : Segoe, "Segoe UI", "Helvetica Neue", Arial, sans-serif !default;
|
83
|
+
$candara : Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif !default;
|
84
|
+
$calibri : Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif !default;
|
85
|
+
$franklin-gothic : "Franklin Gothic Medium", Arial, sans-serif !default;
|
86
|
+
$tahoma : Tahoma, Geneva, Verdana, sans-serif !default;
|
87
|
+
|
88
|
+
// Monospace font-stacks
|
89
|
+
// -------------------------
|
90
|
+
|
91
|
+
$monospace : "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace !default;
|
92
|
+
$monospace-simple : "andale mono", "lucida console", monospace !default;
|
93
|
+
$consolas : Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace !default;
|
94
|
+
|
95
|
+
// Cursive font-stacks
|
96
|
+
// -------------------------
|
97
|
+
$cursive : "Bradley Hand ITC", "Apple Chancery", "URW Chancery L", cursive !default;
|
@@ -0,0 +1,24 @@
|
|
1
|
+
// Vertical rhythm
|
2
|
+
@include establish-baseline(16px);
|
3
|
+
|
4
|
+
/* SELECTION
|
5
|
+
----------------- */
|
6
|
+
@include selection($black, $white);
|
7
|
+
|
8
|
+
|
9
|
+
/* LINKS
|
10
|
+
----------------- */
|
11
|
+
a {
|
12
|
+
color: $linkColor;
|
13
|
+
text-decoration: none;
|
14
|
+
&:visited {
|
15
|
+
color: $linkColor;
|
16
|
+
}
|
17
|
+
&:hover {
|
18
|
+
color: $linkHover;
|
19
|
+
text-decoration: none;
|
20
|
+
}
|
21
|
+
&:focus {
|
22
|
+
outline: thin dotted;
|
23
|
+
}
|
24
|
+
}
|
@@ -0,0 +1,295 @@
|
|
1
|
+
[class^="icon-"]:before,
|
2
|
+
[class*=" icon-"]:before {
|
3
|
+
font-family: FontAwesome;
|
4
|
+
font-weight: normal;
|
5
|
+
font-style: normal;
|
6
|
+
display: inline-block;
|
7
|
+
*display: inline;
|
8
|
+
text-decoration: inherit;
|
9
|
+
*zoom: 1;
|
10
|
+
}
|
11
|
+
|
12
|
+
a [class^="icon-"],
|
13
|
+
a [class*=" icon-"] {
|
14
|
+
display: inline-block;
|
15
|
+
*display: inline;
|
16
|
+
text-decoration: inherit;
|
17
|
+
*zoom: 1;
|
18
|
+
}
|
19
|
+
|
20
|
+
/* makes the font 33% larger relative to the icon container */
|
21
|
+
.icon-large:before {
|
22
|
+
vertical-align: middle;
|
23
|
+
font-size: 1.3333333333333333em;
|
24
|
+
}
|
25
|
+
|
26
|
+
.btn, .nav-tabs {
|
27
|
+
[class^="icon-"],
|
28
|
+
[class*=" icon-"] {
|
29
|
+
/* keeps button heights with and without icons the same */
|
30
|
+
line-height: .9em;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
li {
|
35
|
+
[class^="icon-"],
|
36
|
+
[class*=" icon-"] {
|
37
|
+
display: inline-block;
|
38
|
+
*display: inline;
|
39
|
+
width: 1.25em;
|
40
|
+
text-align: center;
|
41
|
+
*zoom: 1;
|
42
|
+
}
|
43
|
+
.icon-large:before,
|
44
|
+
.icon-large:before {
|
45
|
+
/* 1.5 increased font size for icon-large * 1.25 width */
|
46
|
+
width: 1.5*1.25em;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
ul.icons {
|
51
|
+
list-style-type: none;
|
52
|
+
margin-left: 2em;
|
53
|
+
text-indent: -.8em;
|
54
|
+
|
55
|
+
li {
|
56
|
+
[class^="icon-"],
|
57
|
+
[class*=" icon-"] {
|
58
|
+
width: .8em;
|
59
|
+
}
|
60
|
+
.icon-large:before,
|
61
|
+
.icon-large:before {
|
62
|
+
/* 1.5 increased font size for icon-large * 1.25 width */
|
63
|
+
vertical-align: initial; // width: 1.5*1.25em;
|
64
|
+
}
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
69
|
+
readers do not read off random characters that represent icons */
|
70
|
+
.icon-glass:before { content: "\f000"; }
|
71
|
+
.icon-music:before { content: "\f001"; }
|
72
|
+
.icon-search:before { content: "\f002"; }
|
73
|
+
.icon-envelope:before { content: "\f003"; }
|
74
|
+
.icon-heart:before { content: "\f004"; }
|
75
|
+
.icon-star:before { content: "\f005"; }
|
76
|
+
.icon-star-empty:before { content: "\f006"; }
|
77
|
+
.icon-user:before { content: "\f007"; }
|
78
|
+
.icon-film:before { content: "\f008"; }
|
79
|
+
.icon-th-large:before { content: "\f009"; }
|
80
|
+
.icon-th:before { content: "\f00a"; }
|
81
|
+
.icon-th-list:before { content: "\f00b"; }
|
82
|
+
.icon-ok:before { content: "\f00c"; }
|
83
|
+
.icon-remove:before { content: "\f00d"; }
|
84
|
+
.icon-zoom-in:before { content: "\f00e"; }
|
85
|
+
|
86
|
+
.icon-zoom-out:before { content: "\f010"; }
|
87
|
+
.icon-off:before { content: "\f011"; }
|
88
|
+
.icon-signal:before { content: "\f012"; }
|
89
|
+
.icon-cog:before { content: "\f013"; }
|
90
|
+
.icon-trash:before { content: "\f014"; }
|
91
|
+
.icon-home:before { content: "\f015"; }
|
92
|
+
.icon-file:before { content: "\f016"; }
|
93
|
+
.icon-time:before { content: "\f017"; }
|
94
|
+
.icon-road:before { content: "\f018"; }
|
95
|
+
.icon-download-alt:before { content: "\f019"; }
|
96
|
+
.icon-download:before { content: "\f01a"; }
|
97
|
+
.icon-upload:before { content: "\f01b"; }
|
98
|
+
.icon-inbox:before { content: "\f01c"; }
|
99
|
+
.icon-play-circle:before { content: "\f01d"; }
|
100
|
+
.icon-repeat:before { content: "\f01e"; }
|
101
|
+
|
102
|
+
/* \f020 is not a valid unicode character. all shifted one down */
|
103
|
+
.icon-refresh:before { content: "\f021"; }
|
104
|
+
.icon-list-alt:before { content: "\f022"; }
|
105
|
+
.icon-lock:before { content: "\f023"; }
|
106
|
+
.icon-flag:before { content: "\f024"; }
|
107
|
+
.icon-headphones:before { content: "\f025"; }
|
108
|
+
.icon-volume-off:before { content: "\f026"; }
|
109
|
+
.icon-volume-down:before { content: "\f027"; }
|
110
|
+
.icon-volume-up:before { content: "\f028"; }
|
111
|
+
.icon-qrcode:before { content: "\f029"; }
|
112
|
+
.icon-barcode:before { content: "\f02a"; }
|
113
|
+
.icon-tag:before { content: "\f02b"; }
|
114
|
+
.icon-tags:before { content: "\f02c"; }
|
115
|
+
.icon-book:before { content: "\f02d"; }
|
116
|
+
.icon-bookmark:before { content: "\f02e"; }
|
117
|
+
.icon-print:before { content: "\f02f"; }
|
118
|
+
|
119
|
+
.icon-camera:before { content: "\f030"; }
|
120
|
+
.icon-font:before { content: "\f031"; }
|
121
|
+
.icon-bold:before { content: "\f032"; }
|
122
|
+
.icon-italic:before { content: "\f033"; }
|
123
|
+
.icon-text-height:before { content: "\f034"; }
|
124
|
+
.icon-text-width:before { content: "\f035"; }
|
125
|
+
.icon-align-left:before { content: "\f036"; }
|
126
|
+
.icon-align-center:before { content: "\f037"; }
|
127
|
+
.icon-align-right:before { content: "\f038"; }
|
128
|
+
.icon-align-justify:before { content: "\f039"; }
|
129
|
+
.icon-list:before { content: "\f03a"; }
|
130
|
+
.icon-indent-left:before { content: "\f03b"; }
|
131
|
+
.icon-indent-right:before { content: "\f03c"; }
|
132
|
+
.icon-facetime-video:before { content: "\f03d"; }
|
133
|
+
.icon-picture:before { content: "\f03e"; }
|
134
|
+
|
135
|
+
.icon-pencil:before { content: "\f040"; }
|
136
|
+
.icon-map-marker:before { content: "\f041"; }
|
137
|
+
.icon-adjust:before { content: "\f042"; }
|
138
|
+
.icon-tint:before { content: "\f043"; }
|
139
|
+
.icon-edit:before { content: "\f044"; }
|
140
|
+
.icon-share:before { content: "\f045"; }
|
141
|
+
.icon-check:before { content: "\f046"; }
|
142
|
+
.icon-move:before { content: "\f047"; }
|
143
|
+
.icon-step-backward:before { content: "\f048"; }
|
144
|
+
.icon-fast-backward:before { content: "\f049"; }
|
145
|
+
.icon-backward:before { content: "\f04a"; }
|
146
|
+
.icon-play:before { content: "\f04b"; }
|
147
|
+
.icon-pause:before { content: "\f04c"; }
|
148
|
+
.icon-stop:before { content: "\f04d"; }
|
149
|
+
.icon-forward:before { content: "\f04e"; }
|
150
|
+
|
151
|
+
.icon-fast-forward:before { content: "\f050"; }
|
152
|
+
.icon-step-forward:before { content: "\f051"; }
|
153
|
+
.icon-eject:before { content: "\f052"; }
|
154
|
+
.icon-chevron-left:before { content: "\f053"; }
|
155
|
+
.icon-chevron-right:before { content: "\f054"; }
|
156
|
+
.icon-plus-sign:before { content: "\f055"; }
|
157
|
+
.icon-minus-sign:before { content: "\f056"; }
|
158
|
+
.icon-remove-sign:before { content: "\f057"; }
|
159
|
+
.icon-ok-sign:before { content: "\f058"; }
|
160
|
+
.icon-question-sign:before { content: "\f059"; }
|
161
|
+
.icon-info-sign:before { content: "\f05a"; }
|
162
|
+
.icon-screenshot:before { content: "\f05b"; }
|
163
|
+
.icon-remove-circle:before { content: "\f05c"; }
|
164
|
+
.icon-ok-circle:before { content: "\f05d"; }
|
165
|
+
.icon-ban-circle:before { content: "\f05e"; }
|
166
|
+
|
167
|
+
.icon-arrow-left:before { content: "\f060"; }
|
168
|
+
.icon-arrow-right:before { content: "\f061"; }
|
169
|
+
.icon-arrow-up:before { content: "\f062"; }
|
170
|
+
.icon-arrow-down:before { content: "\f063"; }
|
171
|
+
.icon-share-alt:before { content: "\f064"; }
|
172
|
+
.icon-resize-full:before { content: "\f065"; }
|
173
|
+
.icon-resize-small:before { content: "\f066"; }
|
174
|
+
.icon-plus:before { content: "\f067"; }
|
175
|
+
.icon-minus:before { content: "\f068"; }
|
176
|
+
.icon-asterisk:before { content: "\f069"; }
|
177
|
+
.icon-exclamation-sign:before { content: "\f06a"; }
|
178
|
+
.icon-gift:before { content: "\f06b"; }
|
179
|
+
.icon-leaf:before { content: "\f06c"; }
|
180
|
+
.icon-fire:before { content: "\f06d"; }
|
181
|
+
.icon-eye-open:before { content: "\f06e"; }
|
182
|
+
|
183
|
+
.icon-eye-close:before { content: "\f070"; }
|
184
|
+
.icon-warning-sign:before { content: "\f071"; }
|
185
|
+
.icon-plane:before { content: "\f072"; }
|
186
|
+
.icon-calendar:before { content: "\f073"; }
|
187
|
+
.icon-random:before { content: "\f074"; }
|
188
|
+
.icon-comment:before { content: "\f075"; }
|
189
|
+
.icon-magnet:before { content: "\f076"; }
|
190
|
+
.icon-chevron-up:before { content: "\f077"; }
|
191
|
+
.icon-chevron-down:before { content: "\f078"; }
|
192
|
+
.icon-retweet:before { content: "\f079"; }
|
193
|
+
.icon-shopping-cart:before { content: "\f07a"; }
|
194
|
+
.icon-folder-close:before { content: "\f07b"; }
|
195
|
+
.icon-folder-open:before { content: "\f07c"; }
|
196
|
+
.icon-resize-vertical:before { content: "\f07d"; }
|
197
|
+
.icon-resize-horizontal:before { content: "\f07e"; }
|
198
|
+
|
199
|
+
.icon-bar-chart:before { content: "\f080"; }
|
200
|
+
.icon-twitter-sign:before { content: "\f081"; }
|
201
|
+
.icon-facebook-sign:before { content: "\f082"; }
|
202
|
+
.icon-camera-retro:before { content: "\f083"; }
|
203
|
+
.icon-key:before { content: "\f084"; }
|
204
|
+
.icon-cogs:before { content: "\f085"; }
|
205
|
+
.icon-comments:before { content: "\f086"; }
|
206
|
+
.icon-thumbs-up:before { content: "\f087"; }
|
207
|
+
.icon-thumbs-down:before { content: "\f088"; }
|
208
|
+
.icon-star-half:before { content: "\f089"; }
|
209
|
+
.icon-heart-empty:before { content: "\f08a"; }
|
210
|
+
.icon-signout:before { content: "\f08b"; }
|
211
|
+
.icon-linkedin-sign:before { content: "\f08c"; }
|
212
|
+
.icon-pushpin:before { content: "\f08d"; }
|
213
|
+
.icon-external-link:before { content: "\f08e"; }
|
214
|
+
|
215
|
+
.icon-signin:before { content: "\f090"; }
|
216
|
+
.icon-trophy:before { content: "\f091"; }
|
217
|
+
.icon-github-sign:before { content: "\f092"; }
|
218
|
+
.icon-upload-alt:before { content: "\f093"; }
|
219
|
+
.icon-lemon:before { content: "\f094"; }
|
220
|
+
.icon-phone:before { content: "\f095"; }
|
221
|
+
.icon-check-empty:before { content: "\f096"; }
|
222
|
+
.icon-bookmark-empty:before { content: "\f097"; }
|
223
|
+
.icon-phone-sign:before { content: "\f098"; }
|
224
|
+
.icon-twitter:before { content: "\f099"; }
|
225
|
+
.icon-facebook:before { content: "\f09a"; }
|
226
|
+
.icon-github:before { content: "\f09b"; }
|
227
|
+
.icon-unlock:before { content: "\f09c"; }
|
228
|
+
.icon-credit-card:before { content: "\f09d"; }
|
229
|
+
.icon-rss:before { content: "\f09e"; }
|
230
|
+
|
231
|
+
.icon-hdd:before { content: "\f0a0"; }
|
232
|
+
.icon-bullhorn:before { content: "\f0a1"; }
|
233
|
+
.icon-bell:before { content: "\f0a2"; }
|
234
|
+
.icon-certificate:before { content: "\f0a3"; }
|
235
|
+
.icon-hand-right:before { content: "\f0a4"; }
|
236
|
+
.icon-hand-left:before { content: "\f0a5"; }
|
237
|
+
.icon-hand-up:before { content: "\f0a6"; }
|
238
|
+
.icon-hand-down:before { content: "\f0a7"; }
|
239
|
+
.icon-circle-arrow-left:before { content: "\f0a8"; }
|
240
|
+
.icon-circle-arrow-right:before { content: "\f0a9"; }
|
241
|
+
.icon-circle-arrow-up:before { content: "\f0aa"; }
|
242
|
+
.icon-circle-arrow-down:before { content: "\f0ab"; }
|
243
|
+
.icon-globe:before { content: "\f0ac"; }
|
244
|
+
.icon-wrench:before { content: "\f0ad"; }
|
245
|
+
.icon-tasks:before { content: "\f0ae"; }
|
246
|
+
|
247
|
+
.icon-filter:before { content: "\f0b0"; }
|
248
|
+
.icon-briefcase:before { content: "\f0b1"; }
|
249
|
+
.icon-fullscreen:before { content: "\f0b2"; }
|
250
|
+
|
251
|
+
.icon-group:before { content: "\f0c0"; }
|
252
|
+
.icon-link:before { content: "\f0c1"; }
|
253
|
+
.icon-cloud:before { content: "\f0c2"; }
|
254
|
+
.icon-beaker:before { content: "\f0c3"; }
|
255
|
+
.icon-cut:before { content: "\f0c4"; }
|
256
|
+
.icon-copy:before { content: "\f0c5"; }
|
257
|
+
.icon-paper-clip:before { content: "\f0c6"; }
|
258
|
+
.icon-save:before { content: "\f0c7"; }
|
259
|
+
.icon-sign-blank:before { content: "\f0c8"; }
|
260
|
+
.icon-reorder:before { content: "\f0c9"; }
|
261
|
+
.icon-list-ul:before { content: "\f0ca"; }
|
262
|
+
.icon-list-ol:before { content: "\f0cb"; }
|
263
|
+
.icon-strikethrough:before { content: "\f0cc"; }
|
264
|
+
.icon-underline:before { content: "\f0cd"; }
|
265
|
+
.icon-table:before { content: "\f0ce"; }
|
266
|
+
|
267
|
+
.icon-magic:before { content: "\f0d0"; }
|
268
|
+
.icon-truck:before { content: "\f0d1"; }
|
269
|
+
.icon-pinterest:before { content: "\f0d2"; }
|
270
|
+
.icon-pinterest-sign:before { content: "\f0d3"; }
|
271
|
+
.icon-google-plus-sign:before { content: "\f0d4"; }
|
272
|
+
.icon-google-plus:before { content: "\f0d5"; }
|
273
|
+
.icon-money:before { content: "\f0d6"; }
|
274
|
+
.icon-caret-down:before { content: "\f0d7"; }
|
275
|
+
.icon-caret-up:before { content: "\f0d8"; }
|
276
|
+
.icon-caret-left:before { content: "\f0d9"; }
|
277
|
+
.icon-caret-right:before { content: "\f0da"; }
|
278
|
+
.icon-columns:before { content: "\f0db"; }
|
279
|
+
.icon-sort:before { content: "\f0dc"; }
|
280
|
+
.icon-sort-down:before { content: "\f0dd"; }
|
281
|
+
.icon-sort-up:before { content: "\f0de"; }
|
282
|
+
|
283
|
+
.icon-envelope-alt:before { content: "\f0e0"; }
|
284
|
+
.icon-linkedin:before { content: "\f0e1"; }
|
285
|
+
.icon-undo:before { content: "\f0e2"; }
|
286
|
+
.icon-legal:before { content: "\f0e3"; }
|
287
|
+
.icon-dashboard:before { content: "\f0e4"; }
|
288
|
+
.icon-comment-alt:before { content: "\f0e5"; }
|
289
|
+
.icon-comments-alt:before { content: "\f0e6"; }
|
290
|
+
.icon-bolt:before { content: "\f0e7"; }
|
291
|
+
.icon-sitemap:before { content: "\f0e8"; }
|
292
|
+
.icon-umbrella:before { content: "\f0e9"; }
|
293
|
+
.icon-paste:before { content: "\f0ea"; }
|
294
|
+
|
295
|
+
.icon-user-md:before { content: "\f200"; }
|