brevis 0.0.3 → 0.0.4
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.
- checksums.yaml +4 -4
- data/lib/brevis.rb +30 -0
- data/stylesheets/_brevis.sass +34 -0
- data/stylesheets/brevis/README.md +124 -0
- data/stylesheets/brevis/components/README.md +40 -0
- data/stylesheets/brevis/components/chrome/header/_branding.sass +32 -0
- data/stylesheets/brevis/components/chrome/header/_mobile_toggle.sass +24 -0
- data/stylesheets/brevis/components/chrome/header/_primary_menu.sass +66 -0
- data/stylesheets/brevis/components/chrome/header/_search.sass +46 -0
- data/stylesheets/brevis/components/chrome/header/_social.sass +30 -0
- data/stylesheets/brevis/components/content_lists/_content_carousel.sass +0 -0
- data/stylesheets/brevis/components/content_lists/_content_stream.sass +297 -0
- data/stylesheets/brevis/components/content_lists/_featured.sass +80 -0
- data/stylesheets/brevis/components/content_lists/_headlines.sass +5 -0
- data/stylesheets/brevis/components/content_lists/_topic_lists.sass +16 -0
- data/stylesheets/brevis/components/content_modules/_carousel.sass +23 -0
- data/stylesheets/brevis/components/content_modules/_chosen.sass +294 -0
- data/stylesheets/brevis/components/content_modules/_colorbox.sass +208 -0
- data/stylesheets/brevis/components/content_modules/_flexslider.sass +93 -0
- data/stylesheets/brevis/components/content_modules/_sticky_menu.sass +40 -0
- data/stylesheets/brevis/utilities/README.md +16 -0
- data/stylesheets/brevis/utilities/_admin.sass +9 -0
- data/stylesheets/brevis/utilities/_animations.sass +47 -0
- data/stylesheets/brevis/utilities/_breakpoints.sass +59 -0
- data/stylesheets/brevis/utilities/_colors.sass +23 -0
- data/stylesheets/brevis/utilities/_eq.sass +260 -0
- data/stylesheets/brevis/utilities/_font_awesome.scss +540 -0
- data/stylesheets/brevis/utilities/_forms.sass +27 -0
- data/stylesheets/brevis/utilities/_header.sass +19 -0
- data/stylesheets/brevis/utilities/_images.sass +79 -0
- data/stylesheets/brevis/utilities/_layout.sass +119 -0
- data/stylesheets/brevis/utilities/_page.sass +48 -0
- data/stylesheets/brevis/utilities/_tooltip.sass +48 -0
- data/stylesheets/brevis/utilities/_typography.sass +113 -0
- data/stylesheets/brevis/utilities/_z-index.scss +15 -0
- metadata +55 -22
@@ -0,0 +1,540 @@
|
|
1
|
+
// Variables
|
2
|
+
// --------------------------
|
3
|
+
|
4
|
+
// http://fortawesome.github.io/Font-Awesome/cheatsheet/
|
5
|
+
|
6
|
+
$fa-font-path: "../fonts" !default;
|
7
|
+
|
8
|
+
// for referencing Bootstrap CDN font files directly
|
9
|
+
//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.1.0/fonts" !default;
|
10
|
+
|
11
|
+
$fa-css-prefix: fa !default;
|
12
|
+
$fa-version: "4.1.0" !default;
|
13
|
+
$fa-border-color: #eee !default;
|
14
|
+
$fa-inverse: #fff !default;
|
15
|
+
$fa-li-width: (30em / 14) !default;
|
16
|
+
|
17
|
+
$fa-var-adjust: "\f042";
|
18
|
+
$fa-var-adn: "\f170";
|
19
|
+
$fa-var-align-center: "\f037";
|
20
|
+
$fa-var-align-justify: "\f039";
|
21
|
+
$fa-var-align-left: "\f036";
|
22
|
+
$fa-var-align-right: "\f038";
|
23
|
+
$fa-var-ambulance: "\f0f9";
|
24
|
+
$fa-var-anchor: "\f13d";
|
25
|
+
$fa-var-android: "\f17b";
|
26
|
+
$fa-var-angle-double-down: "\f103";
|
27
|
+
$fa-var-angle-double-left: "\f100";
|
28
|
+
$fa-var-angle-double-right: "\f101";
|
29
|
+
$fa-var-angle-double-up: "\f102";
|
30
|
+
$fa-var-angle-down: "\f107";
|
31
|
+
$fa-var-angle-left: "\f104";
|
32
|
+
$fa-var-angle-right: "\f105";
|
33
|
+
$fa-var-angle-up: "\f106";
|
34
|
+
$fa-var-apple: "\f179";
|
35
|
+
$fa-var-archive: "\f187";
|
36
|
+
$fa-var-arrow-circle-down: "\f0ab";
|
37
|
+
$fa-var-arrow-circle-left: "\f0a8";
|
38
|
+
$fa-var-arrow-circle-o-down: "\f01a";
|
39
|
+
$fa-var-arrow-circle-o-left: "\f190";
|
40
|
+
$fa-var-arrow-circle-o-right: "\f18e";
|
41
|
+
$fa-var-arrow-circle-o-up: "\f01b";
|
42
|
+
$fa-var-arrow-circle-right: "\f0a9";
|
43
|
+
$fa-var-arrow-circle-up: "\f0aa";
|
44
|
+
$fa-var-arrow-down: "\f063";
|
45
|
+
$fa-var-arrow-left: "\f060";
|
46
|
+
$fa-var-arrow-right: "\f061";
|
47
|
+
$fa-var-arrow-up: "\f062";
|
48
|
+
$fa-var-arrows: "\f047";
|
49
|
+
$fa-var-arrows-alt: "\f0b2";
|
50
|
+
$fa-var-arrows-h: "\f07e";
|
51
|
+
$fa-var-arrows-v: "\f07d";
|
52
|
+
$fa-var-asterisk: "\f069";
|
53
|
+
$fa-var-automobile: "\f1b9";
|
54
|
+
$fa-var-backward: "\f04a";
|
55
|
+
$fa-var-ban: "\f05e";
|
56
|
+
$fa-var-bank: "\f19c";
|
57
|
+
$fa-var-bar-chart-o: "\f080";
|
58
|
+
$fa-var-barcode: "\f02a";
|
59
|
+
$fa-var-bars: "\f0c9";
|
60
|
+
$fa-var-beer: "\f0fc";
|
61
|
+
$fa-var-behance: "\f1b4";
|
62
|
+
$fa-var-behance-square: "\f1b5";
|
63
|
+
$fa-var-bell: "\f0f3";
|
64
|
+
$fa-var-bell-o: "\f0a2";
|
65
|
+
$fa-var-bitbucket: "\f171";
|
66
|
+
$fa-var-bitbucket-square: "\f172";
|
67
|
+
$fa-var-bitcoin: "\f15a";
|
68
|
+
$fa-var-bold: "\f032";
|
69
|
+
$fa-var-bolt: "\f0e7";
|
70
|
+
$fa-var-bomb: "\f1e2";
|
71
|
+
$fa-var-book: "\f02d";
|
72
|
+
$fa-var-bookmark: "\f02e";
|
73
|
+
$fa-var-bookmark-o: "\f097";
|
74
|
+
$fa-var-briefcase: "\f0b1";
|
75
|
+
$fa-var-btc: "\f15a";
|
76
|
+
$fa-var-bug: "\f188";
|
77
|
+
$fa-var-building: "\f1ad";
|
78
|
+
$fa-var-building-o: "\f0f7";
|
79
|
+
$fa-var-bullhorn: "\f0a1";
|
80
|
+
$fa-var-bullseye: "\f140";
|
81
|
+
$fa-var-cab: "\f1ba";
|
82
|
+
$fa-var-calendar: "\f073";
|
83
|
+
$fa-var-calendar-o: "\f133";
|
84
|
+
$fa-var-camera: "\f030";
|
85
|
+
$fa-var-camera-retro: "\f083";
|
86
|
+
$fa-var-car: "\f1b9";
|
87
|
+
$fa-var-caret-down: "\f0d7";
|
88
|
+
$fa-var-caret-left: "\f0d9";
|
89
|
+
$fa-var-caret-right: "\f0da";
|
90
|
+
$fa-var-caret-square-o-down: "\f150";
|
91
|
+
$fa-var-caret-square-o-left: "\f191";
|
92
|
+
$fa-var-caret-square-o-right: "\f152";
|
93
|
+
$fa-var-caret-square-o-up: "\f151";
|
94
|
+
$fa-var-caret-up: "\f0d8";
|
95
|
+
$fa-var-certificate: "\f0a3";
|
96
|
+
$fa-var-chain: "\f0c1";
|
97
|
+
$fa-var-chain-broken: "\f127";
|
98
|
+
$fa-var-check: "\f00c";
|
99
|
+
$fa-var-check-circle: "\f058";
|
100
|
+
$fa-var-check-circle-o: "\f05d";
|
101
|
+
$fa-var-check-square: "\f14a";
|
102
|
+
$fa-var-check-square-o: "\f046";
|
103
|
+
$fa-var-chevron-circle-down: "\f13a";
|
104
|
+
$fa-var-chevron-circle-left: "\f137";
|
105
|
+
$fa-var-chevron-circle-right: "\f138";
|
106
|
+
$fa-var-chevron-circle-up: "\f139";
|
107
|
+
$fa-var-chevron-down: "\f078";
|
108
|
+
$fa-var-chevron-left: "\f053";
|
109
|
+
$fa-var-chevron-right: "\f054";
|
110
|
+
$fa-var-chevron-up: "\f077";
|
111
|
+
$fa-var-child: "\f1ae";
|
112
|
+
$fa-var-circle: "\f111";
|
113
|
+
$fa-var-circle-o: "\f10c";
|
114
|
+
$fa-var-circle-o-notch: "\f1ce";
|
115
|
+
$fa-var-circle-thin: "\f1db";
|
116
|
+
$fa-var-clipboard: "\f0ea";
|
117
|
+
$fa-var-clock-o: "\f017";
|
118
|
+
$fa-var-cloud: "\f0c2";
|
119
|
+
$fa-var-cloud-download: "\f0ed";
|
120
|
+
$fa-var-cloud-upload: "\f0ee";
|
121
|
+
$fa-var-cny: "\f157";
|
122
|
+
$fa-var-code: "\f121";
|
123
|
+
$fa-var-code-fork: "\f126";
|
124
|
+
$fa-var-codepen: "\f1cb";
|
125
|
+
$fa-var-coffee: "\f0f4";
|
126
|
+
$fa-var-cog: "\f013";
|
127
|
+
$fa-var-cogs: "\f085";
|
128
|
+
$fa-var-columns: "\f0db";
|
129
|
+
$fa-var-comment: "\f075";
|
130
|
+
$fa-var-comment-o: "\f0e5";
|
131
|
+
$fa-var-comments: "\f086";
|
132
|
+
$fa-var-comments-o: "\f0e6";
|
133
|
+
$fa-var-compass: "\f14e";
|
134
|
+
$fa-var-compress: "\f066";
|
135
|
+
$fa-var-copy: "\f0c5";
|
136
|
+
$fa-var-credit-card: "\f09d";
|
137
|
+
$fa-var-crop: "\f125";
|
138
|
+
$fa-var-crosshairs: "\f05b";
|
139
|
+
$fa-var-css3: "\f13c";
|
140
|
+
$fa-var-cube: "\f1b2";
|
141
|
+
$fa-var-cubes: "\f1b3";
|
142
|
+
$fa-var-cut: "\f0c4";
|
143
|
+
$fa-var-cutlery: "\f0f5";
|
144
|
+
$fa-var-dashboard: "\f0e4";
|
145
|
+
$fa-var-database: "\f1c0";
|
146
|
+
$fa-var-dedent: "\f03b";
|
147
|
+
$fa-var-delicious: "\f1a5";
|
148
|
+
$fa-var-desktop: "\f108";
|
149
|
+
$fa-var-deviantart: "\f1bd";
|
150
|
+
$fa-var-digg: "\f1a6";
|
151
|
+
$fa-var-dollar: "\f155";
|
152
|
+
$fa-var-dot-circle-o: "\f192";
|
153
|
+
$fa-var-download: "\f019";
|
154
|
+
$fa-var-dribbble: "\f17d";
|
155
|
+
$fa-var-dropbox: "\f16b";
|
156
|
+
$fa-var-drupal: "\f1a9";
|
157
|
+
$fa-var-edit: "\f044";
|
158
|
+
$fa-var-eject: "\f052";
|
159
|
+
$fa-var-ellipsis-h: "\f141";
|
160
|
+
$fa-var-ellipsis-v: "\f142";
|
161
|
+
$fa-var-empire: "\f1d1";
|
162
|
+
$fa-var-envelope: "\f0e0";
|
163
|
+
$fa-var-envelope-o: "\f003";
|
164
|
+
$fa-var-envelope-square: "\f199";
|
165
|
+
$fa-var-eraser: "\f12d";
|
166
|
+
$fa-var-eur: "\f153";
|
167
|
+
$fa-var-euro: "\f153";
|
168
|
+
$fa-var-exchange: "\f0ec";
|
169
|
+
$fa-var-exclamation: "\f12a";
|
170
|
+
$fa-var-exclamation-circle: "\f06a";
|
171
|
+
$fa-var-exclamation-triangle: "\f071";
|
172
|
+
$fa-var-expand: "\f065";
|
173
|
+
$fa-var-external-link: "\f08e";
|
174
|
+
$fa-var-external-link-square: "\f14c";
|
175
|
+
$fa-var-eye: "\f06e";
|
176
|
+
$fa-var-eye-slash: "\f070";
|
177
|
+
$fa-var-facebook: "\f09a";
|
178
|
+
$fa-var-facebook-square: "\f082";
|
179
|
+
$fa-var-fast-backward: "\f049";
|
180
|
+
$fa-var-fast-forward: "\f050";
|
181
|
+
$fa-var-fax: "\f1ac";
|
182
|
+
$fa-var-female: "\f182";
|
183
|
+
$fa-var-fighter-jet: "\f0fb";
|
184
|
+
$fa-var-file: "\f15b";
|
185
|
+
$fa-var-file-archive-o: "\f1c6";
|
186
|
+
$fa-var-file-audio-o: "\f1c7";
|
187
|
+
$fa-var-file-code-o: "\f1c9";
|
188
|
+
$fa-var-file-excel-o: "\f1c3";
|
189
|
+
$fa-var-file-image-o: "\f1c5";
|
190
|
+
$fa-var-file-movie-o: "\f1c8";
|
191
|
+
$fa-var-file-o: "\f016";
|
192
|
+
$fa-var-file-pdf-o: "\f1c1";
|
193
|
+
$fa-var-file-photo-o: "\f1c5";
|
194
|
+
$fa-var-file-picture-o: "\f1c5";
|
195
|
+
$fa-var-file-powerpoint-o: "\f1c4";
|
196
|
+
$fa-var-file-sound-o: "\f1c7";
|
197
|
+
$fa-var-file-text: "\f15c";
|
198
|
+
$fa-var-file-text-o: "\f0f6";
|
199
|
+
$fa-var-file-video-o: "\f1c8";
|
200
|
+
$fa-var-file-word-o: "\f1c2";
|
201
|
+
$fa-var-file-zip-o: "\f1c6";
|
202
|
+
$fa-var-files-o: "\f0c5";
|
203
|
+
$fa-var-film: "\f008";
|
204
|
+
$fa-var-filter: "\f0b0";
|
205
|
+
$fa-var-fire: "\f06d";
|
206
|
+
$fa-var-fire-extinguisher: "\f134";
|
207
|
+
$fa-var-flag: "\f024";
|
208
|
+
$fa-var-flag-checkered: "\f11e";
|
209
|
+
$fa-var-flag-o: "\f11d";
|
210
|
+
$fa-var-flash: "\f0e7";
|
211
|
+
$fa-var-flask: "\f0c3";
|
212
|
+
$fa-var-flickr: "\f16e";
|
213
|
+
$fa-var-floppy-o: "\f0c7";
|
214
|
+
$fa-var-folder: "\f07b";
|
215
|
+
$fa-var-folder-o: "\f114";
|
216
|
+
$fa-var-folder-open: "\f07c";
|
217
|
+
$fa-var-folder-open-o: "\f115";
|
218
|
+
$fa-var-font: "\f031";
|
219
|
+
$fa-var-forward: "\f04e";
|
220
|
+
$fa-var-foursquare: "\f180";
|
221
|
+
$fa-var-frown-o: "\f119";
|
222
|
+
$fa-var-gamepad: "\f11b";
|
223
|
+
$fa-var-gavel: "\f0e3";
|
224
|
+
$fa-var-gbp: "\f154";
|
225
|
+
$fa-var-ge: "\f1d1";
|
226
|
+
$fa-var-gear: "\f013";
|
227
|
+
$fa-var-gears: "\f085";
|
228
|
+
$fa-var-gift: "\f06b";
|
229
|
+
$fa-var-git: "\f1d3";
|
230
|
+
$fa-var-git-square: "\f1d2";
|
231
|
+
$fa-var-github: "\f09b";
|
232
|
+
$fa-var-github-alt: "\f113";
|
233
|
+
$fa-var-github-square: "\f092";
|
234
|
+
$fa-var-gittip: "\f184";
|
235
|
+
$fa-var-glass: "\f000";
|
236
|
+
$fa-var-globe: "\f0ac";
|
237
|
+
$fa-var-google: "\f1a0";
|
238
|
+
$fa-var-google-plus: "\f0d5";
|
239
|
+
$fa-var-google-plus-square: "\f0d4";
|
240
|
+
$fa-var-graduation-cap: "\f19d";
|
241
|
+
$fa-var-group: "\f0c0";
|
242
|
+
$fa-var-h-square: "\f0fd";
|
243
|
+
$fa-var-hacker-news: "\f1d4";
|
244
|
+
$fa-var-hand-o-down: "\f0a7";
|
245
|
+
$fa-var-hand-o-left: "\f0a5";
|
246
|
+
$fa-var-hand-o-right: "\f0a4";
|
247
|
+
$fa-var-hand-o-up: "\f0a6";
|
248
|
+
$fa-var-hdd-o: "\f0a0";
|
249
|
+
$fa-var-header: "\f1dc";
|
250
|
+
$fa-var-headphones: "\f025";
|
251
|
+
$fa-var-heart: "\f004";
|
252
|
+
$fa-var-heart-o: "\f08a";
|
253
|
+
$fa-var-history: "\f1da";
|
254
|
+
$fa-var-home: "\f015";
|
255
|
+
$fa-var-hospital-o: "\f0f8";
|
256
|
+
$fa-var-html5: "\f13b";
|
257
|
+
$fa-var-image: "\f03e";
|
258
|
+
$fa-var-inbox: "\f01c";
|
259
|
+
$fa-var-indent: "\f03c";
|
260
|
+
$fa-var-info: "\f129";
|
261
|
+
$fa-var-info-circle: "\f05a";
|
262
|
+
$fa-var-inr: "\f156";
|
263
|
+
$fa-var-instagram: "\f16d";
|
264
|
+
$fa-var-institution: "\f19c";
|
265
|
+
$fa-var-italic: "\f033";
|
266
|
+
$fa-var-joomla: "\f1aa";
|
267
|
+
$fa-var-jpy: "\f157";
|
268
|
+
$fa-var-jsfiddle: "\f1cc";
|
269
|
+
$fa-var-key: "\f084";
|
270
|
+
$fa-var-keyboard-o: "\f11c";
|
271
|
+
$fa-var-krw: "\f159";
|
272
|
+
$fa-var-language: "\f1ab";
|
273
|
+
$fa-var-laptop: "\f109";
|
274
|
+
$fa-var-leaf: "\f06c";
|
275
|
+
$fa-var-legal: "\f0e3";
|
276
|
+
$fa-var-lemon-o: "\f094";
|
277
|
+
$fa-var-level-down: "\f149";
|
278
|
+
$fa-var-level-up: "\f148";
|
279
|
+
$fa-var-life-bouy: "\f1cd";
|
280
|
+
$fa-var-life-ring: "\f1cd";
|
281
|
+
$fa-var-life-saver: "\f1cd";
|
282
|
+
$fa-var-lightbulb-o: "\f0eb";
|
283
|
+
$fa-var-link: "\f0c1";
|
284
|
+
$fa-var-linkedin: "\f0e1";
|
285
|
+
$fa-var-linkedin-square: "\f08c";
|
286
|
+
$fa-var-linux: "\f17c";
|
287
|
+
$fa-var-list: "\f03a";
|
288
|
+
$fa-var-list-alt: "\f022";
|
289
|
+
$fa-var-list-ol: "\f0cb";
|
290
|
+
$fa-var-list-ul: "\f0ca";
|
291
|
+
$fa-var-location-arrow: "\f124";
|
292
|
+
$fa-var-lock: "\f023";
|
293
|
+
$fa-var-long-arrow-down: "\f175";
|
294
|
+
$fa-var-long-arrow-left: "\f177";
|
295
|
+
$fa-var-long-arrow-right: "\f178";
|
296
|
+
$fa-var-long-arrow-up: "\f176";
|
297
|
+
$fa-var-magic: "\f0d0";
|
298
|
+
$fa-var-magnet: "\f076";
|
299
|
+
$fa-var-mail-forward: "\f064";
|
300
|
+
$fa-var-mail-reply: "\f112";
|
301
|
+
$fa-var-mail-reply-all: "\f122";
|
302
|
+
$fa-var-male: "\f183";
|
303
|
+
$fa-var-map-marker: "\f041";
|
304
|
+
$fa-var-maxcdn: "\f136";
|
305
|
+
$fa-var-medkit: "\f0fa";
|
306
|
+
$fa-var-meh-o: "\f11a";
|
307
|
+
$fa-var-microphone: "\f130";
|
308
|
+
$fa-var-microphone-slash: "\f131";
|
309
|
+
$fa-var-minus: "\f068";
|
310
|
+
$fa-var-minus-circle: "\f056";
|
311
|
+
$fa-var-minus-square: "\f146";
|
312
|
+
$fa-var-minus-square-o: "\f147";
|
313
|
+
$fa-var-mobile: "\f10b";
|
314
|
+
$fa-var-mobile-phone: "\f10b";
|
315
|
+
$fa-var-money: "\f0d6";
|
316
|
+
$fa-var-moon-o: "\f186";
|
317
|
+
$fa-var-mortar-board: "\f19d";
|
318
|
+
$fa-var-music: "\f001";
|
319
|
+
$fa-var-navicon: "\f0c9";
|
320
|
+
$fa-var-openid: "\f19b";
|
321
|
+
$fa-var-outdent: "\f03b";
|
322
|
+
$fa-var-pagelines: "\f18c";
|
323
|
+
$fa-var-paper-plane: "\f1d8";
|
324
|
+
$fa-var-paper-plane-o: "\f1d9";
|
325
|
+
$fa-var-paperclip: "\f0c6";
|
326
|
+
$fa-var-paragraph: "\f1dd";
|
327
|
+
$fa-var-paste: "\f0ea";
|
328
|
+
$fa-var-pause: "\f04c";
|
329
|
+
$fa-var-paw: "\f1b0";
|
330
|
+
$fa-var-pencil: "\f040";
|
331
|
+
$fa-var-pencil-square: "\f14b";
|
332
|
+
$fa-var-pencil-square-o: "\f044";
|
333
|
+
$fa-var-phone: "\f095";
|
334
|
+
$fa-var-phone-square: "\f098";
|
335
|
+
$fa-var-photo: "\f03e";
|
336
|
+
$fa-var-picture-o: "\f03e";
|
337
|
+
$fa-var-pied-piper: "\f1a7";
|
338
|
+
$fa-var-pied-piper-alt: "\f1a8";
|
339
|
+
$fa-var-pied-piper-square: "\f1a7";
|
340
|
+
$fa-var-pinterest: "\f0d2";
|
341
|
+
$fa-var-pinterest-square: "\f0d3";
|
342
|
+
$fa-var-plane: "\f072";
|
343
|
+
$fa-var-play: "\f04b";
|
344
|
+
$fa-var-play-circle: "\f144";
|
345
|
+
$fa-var-play-circle-o: "\f01d";
|
346
|
+
$fa-var-plus: "\f067";
|
347
|
+
$fa-var-plus-circle: "\f055";
|
348
|
+
$fa-var-plus-square: "\f0fe";
|
349
|
+
$fa-var-plus-square-o: "\f196";
|
350
|
+
$fa-var-power-off: "\f011";
|
351
|
+
$fa-var-print: "\f02f";
|
352
|
+
$fa-var-puzzle-piece: "\f12e";
|
353
|
+
$fa-var-qq: "\f1d6";
|
354
|
+
$fa-var-qrcode: "\f029";
|
355
|
+
$fa-var-question: "\f128";
|
356
|
+
$fa-var-question-circle: "\f059";
|
357
|
+
$fa-var-quote-left: "\f10d";
|
358
|
+
$fa-var-quote-right: "\f10e";
|
359
|
+
$fa-var-ra: "\f1d0";
|
360
|
+
$fa-var-random: "\f074";
|
361
|
+
$fa-var-rebel: "\f1d0";
|
362
|
+
$fa-var-recycle: "\f1b8";
|
363
|
+
$fa-var-reddit: "\f1a1";
|
364
|
+
$fa-var-reddit-square: "\f1a2";
|
365
|
+
$fa-var-refresh: "\f021";
|
366
|
+
$fa-var-renren: "\f18b";
|
367
|
+
$fa-var-reorder: "\f0c9";
|
368
|
+
$fa-var-repeat: "\f01e";
|
369
|
+
$fa-var-reply: "\f112";
|
370
|
+
$fa-var-reply-all: "\f122";
|
371
|
+
$fa-var-retweet: "\f079";
|
372
|
+
$fa-var-rmb: "\f157";
|
373
|
+
$fa-var-road: "\f018";
|
374
|
+
$fa-var-rocket: "\f135";
|
375
|
+
$fa-var-rotate-left: "\f0e2";
|
376
|
+
$fa-var-rotate-right: "\f01e";
|
377
|
+
$fa-var-rouble: "\f158";
|
378
|
+
$fa-var-rss: "\f09e";
|
379
|
+
$fa-var-rss-square: "\f143";
|
380
|
+
$fa-var-rub: "\f158";
|
381
|
+
$fa-var-ruble: "\f158";
|
382
|
+
$fa-var-rupee: "\f156";
|
383
|
+
$fa-var-save: "\f0c7";
|
384
|
+
$fa-var-scissors: "\f0c4";
|
385
|
+
$fa-var-search: "\f002";
|
386
|
+
$fa-var-search-minus: "\f010";
|
387
|
+
$fa-var-search-plus: "\f00e";
|
388
|
+
$fa-var-send: "\f1d8";
|
389
|
+
$fa-var-send-o: "\f1d9";
|
390
|
+
$fa-var-share: "\f064";
|
391
|
+
$fa-var-share-alt: "\f1e0";
|
392
|
+
$fa-var-share-alt-square: "\f1e1";
|
393
|
+
$fa-var-share-square: "\f14d";
|
394
|
+
$fa-var-share-square-o: "\f045";
|
395
|
+
$fa-var-shield: "\f132";
|
396
|
+
$fa-var-shopping-cart: "\f07a";
|
397
|
+
$fa-var-sign-in: "\f090";
|
398
|
+
$fa-var-sign-out: "\f08b";
|
399
|
+
$fa-var-signal: "\f012";
|
400
|
+
$fa-var-sitemap: "\f0e8";
|
401
|
+
$fa-var-skype: "\f17e";
|
402
|
+
$fa-var-slack: "\f198";
|
403
|
+
$fa-var-sliders: "\f1de";
|
404
|
+
$fa-var-smile-o: "\f118";
|
405
|
+
$fa-var-sort: "\f0dc";
|
406
|
+
$fa-var-sort-alpha-asc: "\f15d";
|
407
|
+
$fa-var-sort-alpha-desc: "\f15e";
|
408
|
+
$fa-var-sort-amount-asc: "\f160";
|
409
|
+
$fa-var-sort-amount-desc: "\f161";
|
410
|
+
$fa-var-sort-asc: "\f0de";
|
411
|
+
$fa-var-sort-desc: "\f0dd";
|
412
|
+
$fa-var-sort-down: "\f0dd";
|
413
|
+
$fa-var-sort-numeric-asc: "\f162";
|
414
|
+
$fa-var-sort-numeric-desc: "\f163";
|
415
|
+
$fa-var-sort-up: "\f0de";
|
416
|
+
$fa-var-soundcloud: "\f1be";
|
417
|
+
$fa-var-space-shuttle: "\f197";
|
418
|
+
$fa-var-spinner: "\f110";
|
419
|
+
$fa-var-spoon: "\f1b1";
|
420
|
+
$fa-var-spotify: "\f1bc";
|
421
|
+
$fa-var-square: "\f0c8";
|
422
|
+
$fa-var-square-o: "\f096";
|
423
|
+
$fa-var-stack-exchange: "\f18d";
|
424
|
+
$fa-var-stack-overflow: "\f16c";
|
425
|
+
$fa-var-star: "\f005";
|
426
|
+
$fa-var-star-half: "\f089";
|
427
|
+
$fa-var-star-half-empty: "\f123";
|
428
|
+
$fa-var-star-half-full: "\f123";
|
429
|
+
$fa-var-star-half-o: "\f123";
|
430
|
+
$fa-var-star-o: "\f006";
|
431
|
+
$fa-var-steam: "\f1b6";
|
432
|
+
$fa-var-steam-square: "\f1b7";
|
433
|
+
$fa-var-step-backward: "\f048";
|
434
|
+
$fa-var-step-forward: "\f051";
|
435
|
+
$fa-var-stethoscope: "\f0f1";
|
436
|
+
$fa-var-stop: "\f04d";
|
437
|
+
$fa-var-strikethrough: "\f0cc";
|
438
|
+
$fa-var-stumbleupon: "\f1a4";
|
439
|
+
$fa-var-stumbleupon-circle: "\f1a3";
|
440
|
+
$fa-var-subscript: "\f12c";
|
441
|
+
$fa-var-suitcase: "\f0f2";
|
442
|
+
$fa-var-sun-o: "\f185";
|
443
|
+
$fa-var-superscript: "\f12b";
|
444
|
+
$fa-var-support: "\f1cd";
|
445
|
+
$fa-var-table: "\f0ce";
|
446
|
+
$fa-var-tablet: "\f10a";
|
447
|
+
$fa-var-tachometer: "\f0e4";
|
448
|
+
$fa-var-tag: "\f02b";
|
449
|
+
$fa-var-tags: "\f02c";
|
450
|
+
$fa-var-tasks: "\f0ae";
|
451
|
+
$fa-var-taxi: "\f1ba";
|
452
|
+
$fa-var-tencent-weibo: "\f1d5";
|
453
|
+
$fa-var-terminal: "\f120";
|
454
|
+
$fa-var-text-height: "\f034";
|
455
|
+
$fa-var-text-width: "\f035";
|
456
|
+
$fa-var-th: "\f00a";
|
457
|
+
$fa-var-th-large: "\f009";
|
458
|
+
$fa-var-th-list: "\f00b";
|
459
|
+
$fa-var-thumb-tack: "\f08d";
|
460
|
+
$fa-var-thumbs-down: "\f165";
|
461
|
+
$fa-var-thumbs-o-down: "\f088";
|
462
|
+
$fa-var-thumbs-o-up: "\f087";
|
463
|
+
$fa-var-thumbs-up: "\f164";
|
464
|
+
$fa-var-ticket: "\f145";
|
465
|
+
$fa-var-times: "\f00d";
|
466
|
+
$fa-var-times-circle: "\f057";
|
467
|
+
$fa-var-times-circle-o: "\f05c";
|
468
|
+
$fa-var-tint: "\f043";
|
469
|
+
$fa-var-toggle-down: "\f150";
|
470
|
+
$fa-var-toggle-left: "\f191";
|
471
|
+
$fa-var-toggle-right: "\f152";
|
472
|
+
$fa-var-toggle-up: "\f151";
|
473
|
+
$fa-var-trash-o: "\f014";
|
474
|
+
$fa-var-tree: "\f1bb";
|
475
|
+
$fa-var-trello: "\f181";
|
476
|
+
$fa-var-trophy: "\f091";
|
477
|
+
$fa-var-truck: "\f0d1";
|
478
|
+
$fa-var-try: "\f195";
|
479
|
+
$fa-var-tumblr: "\f173";
|
480
|
+
$fa-var-tumblr-square: "\f174";
|
481
|
+
$fa-var-turkish-lira: "\f195";
|
482
|
+
$fa-var-twitter: "\f099";
|
483
|
+
$fa-var-twitter-square: "\f081";
|
484
|
+
$fa-var-umbrella: "\f0e9";
|
485
|
+
$fa-var-underline: "\f0cd";
|
486
|
+
$fa-var-undo: "\f0e2";
|
487
|
+
$fa-var-university: "\f19c";
|
488
|
+
$fa-var-unlink: "\f127";
|
489
|
+
$fa-var-unlock: "\f09c";
|
490
|
+
$fa-var-unlock-alt: "\f13e";
|
491
|
+
$fa-var-unsorted: "\f0dc";
|
492
|
+
$fa-var-upload: "\f093";
|
493
|
+
$fa-var-usd: "\f155";
|
494
|
+
$fa-var-user: "\f007";
|
495
|
+
$fa-var-user-md: "\f0f0";
|
496
|
+
$fa-var-users: "\f0c0";
|
497
|
+
$fa-var-video-camera: "\f03d";
|
498
|
+
$fa-var-vimeo-square: "\f194";
|
499
|
+
$fa-var-vine: "\f1ca";
|
500
|
+
$fa-var-vk: "\f189";
|
501
|
+
$fa-var-volume-down: "\f027";
|
502
|
+
$fa-var-volume-off: "\f026";
|
503
|
+
$fa-var-volume-up: "\f028";
|
504
|
+
$fa-var-warning: "\f071";
|
505
|
+
$fa-var-wechat: "\f1d7";
|
506
|
+
$fa-var-weibo: "\f18a";
|
507
|
+
$fa-var-weixin: "\f1d7";
|
508
|
+
$fa-var-wheelchair: "\f193";
|
509
|
+
$fa-var-windows: "\f17a";
|
510
|
+
$fa-var-won: "\f159";
|
511
|
+
$fa-var-wordpress: "\f19a";
|
512
|
+
$fa-var-wrench: "\f0ad";
|
513
|
+
$fa-var-xing: "\f168";
|
514
|
+
$fa-var-xing-square: "\f169";
|
515
|
+
$fa-var-yahoo: "\f19e";
|
516
|
+
$fa-var-yen: "\f157";
|
517
|
+
$fa-var-youtube: "\f167";
|
518
|
+
$fa-var-youtube-play: "\f16a";
|
519
|
+
$fa-var-youtube-square: "\f166";
|
520
|
+
|
521
|
+
// Mixins
|
522
|
+
// --------------------------
|
523
|
+
|
524
|
+
@mixin fa-icon-rotate($degrees, $rotation) {
|
525
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
|
526
|
+
-webkit-transform: rotate($degrees);
|
527
|
+
-moz-transform: rotate($degrees);
|
528
|
+
-ms-transform: rotate($degrees);
|
529
|
+
-o-transform: rotate($degrees);
|
530
|
+
transform: rotate($degrees);
|
531
|
+
}
|
532
|
+
|
533
|
+
@mixin fa-icon-flip($horiz, $vert, $rotation) {
|
534
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
|
535
|
+
-webkit-transform: scale($horiz, $vert);
|
536
|
+
-moz-transform: scale($horiz, $vert);
|
537
|
+
-ms-transform: scale($horiz, $vert);
|
538
|
+
-o-transform: scale($horiz, $vert);
|
539
|
+
transform: scale($horiz, $vert);
|
540
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
$form-element-height: 40px
|
2
|
+
|
3
|
+
%input_tiny
|
4
|
+
width: 50px
|
5
|
+
|
6
|
+
%input_small
|
7
|
+
width: 100px
|
8
|
+
|
9
|
+
%input_medium
|
10
|
+
width: 150px
|
11
|
+
|
12
|
+
%input_large
|
13
|
+
width: 200px
|
14
|
+
|
15
|
+
%input_xlarge
|
16
|
+
width: 250px
|
17
|
+
|
18
|
+
%input_xxlarge
|
19
|
+
width: 300px
|
20
|
+
|
21
|
+
%input_full
|
22
|
+
width: 100%
|
23
|
+
|
24
|
+
%input_full_wrap
|
25
|
+
display: block
|
26
|
+
padding-right: 8px
|
27
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
//////////////////////////////
|
2
|
+
// Sizes
|
3
|
+
$logo-h: 90px
|
4
|
+
$logo-w: 425px
|
5
|
+
$mobile-logo-h: 42px
|
6
|
+
$mobile-logo-w: 42px
|
7
|
+
$logo-bottom-margin: 10px
|
8
|
+
|
9
|
+
$mobile-branding-size: 50px
|
10
|
+
$header-icon: 40px
|
11
|
+
$header-icon-lg: 50px
|
12
|
+
$admin-nav: 40px
|
13
|
+
|
14
|
+
$navicon-size: 40px
|
15
|
+
$navicon-margin: 7px
|
16
|
+
|
17
|
+
$primary-menu-height: 40px
|
18
|
+
$primary-menu-padding-v: 5px
|
19
|
+
$primary-menu-padding-h: 10px
|
@@ -0,0 +1,79 @@
|
|
1
|
+
//////////////////////////////
|
2
|
+
// Blueprint theme paths - for use with interpolation syntax:
|
3
|
+
// background: url("#{$base-images}/image-name.png")
|
4
|
+
$base: "../../blueprint"
|
5
|
+
$base-images: "../../blueprint/blueprint_images"
|
6
|
+
|
7
|
+
$content-stream-img-sm: 50%
|
8
|
+
$content-stream-img-md: 47.5%
|
9
|
+
|
10
|
+
|
11
|
+
@mixin img-types
|
12
|
+
.pane-node-field-cover-photo,
|
13
|
+
.field--name-field-image
|
14
|
+
@content
|
15
|
+
|
16
|
+
@mixin img-left
|
17
|
+
float: left
|
18
|
+
padding: 0 10px 5px 0
|
19
|
+
|
20
|
+
@mixin img-right
|
21
|
+
float: right
|
22
|
+
padding: 0 0 5px 10px
|
23
|
+
|
24
|
+
@mixin img-no-float
|
25
|
+
float: none
|
26
|
+
padding: 0
|
27
|
+
|
28
|
+
|
29
|
+
%img-left
|
30
|
+
+img-left
|
31
|
+
|
32
|
+
%img-right
|
33
|
+
+img-right
|
34
|
+
|
35
|
+
@mixin img2x($file, $type, $width, $height, $inline: 'false')
|
36
|
+
@if $inline == true
|
37
|
+
background-image: inline-image($file + '.' + $type)
|
38
|
+
@media (-webkit-min-device-pixel-ratio: 2), (-moz-min-device-pixel-ratio: 2)
|
39
|
+
&
|
40
|
+
background-image: inline-image($file + '@2x.' + $type)
|
41
|
+
-webkit-background-size: $width $height
|
42
|
+
@else
|
43
|
+
background-image: image-url("#{$file}.#{$type}")
|
44
|
+
@media (-webkit-min-device-pixel-ratio: 2), (-moz-min-device-pixel-ratio: 2)
|
45
|
+
&
|
46
|
+
background-image: image-url("#{$file}@2x.#{$type}")
|
47
|
+
-webkit-background-size: $width $height
|
48
|
+
// EXAMPLE:
|
49
|
+
// +img2x('puppies', 'png', 100px, 75px)
|
50
|
+
|
51
|
+
@mixin svg-bg($filename, $position: 0, $height: 20px, $width: 20px, $spacing: 10px, $bg-color: transparent, $repeat: no-repeat, $attachment: scroll, $source: '#{$base-images}', $no-svg-class: '.no-svg', $pseudo: 'before')
|
52
|
+
&:#{$pseudo}
|
53
|
+
content: ''
|
54
|
+
display: inline-block
|
55
|
+
background: $bg-color url($source + '/' + $filename + '.svg') $attachment $repeat $position
|
56
|
+
background-size: $height $width
|
57
|
+
height: $height
|
58
|
+
width: $width
|
59
|
+
margin-right: $spacing
|
60
|
+
#{$no-svg-class} &
|
61
|
+
&:#{$pseudo}
|
62
|
+
background-image: url($source + '/' + $filename + '.png')
|
63
|
+
|
64
|
+
@mixin svg-bg-simple($filename, $source: '#{$base-images}', $no-svg-class: '.lt-ie9', $pseudo: 'before')
|
65
|
+
background-image: url($source + '/' + $filename + '.svg')
|
66
|
+
#{$no-svg-class} &
|
67
|
+
background-image: url($source + '/' + $filename + '.png')
|
68
|
+
|
69
|
+
// https://gist.github.com/darren131/3410875
|
70
|
+
@mixin resize-sprite($map, $sprite, $percent)
|
71
|
+
$spritePath: sprite-path($map)
|
72
|
+
$spriteWidth: image-width($spritePath)
|
73
|
+
$spriteHeight: image-height($spritePath)
|
74
|
+
$width: image-width(sprite-file($map, $sprite))
|
75
|
+
$height: image-height(sprite-file($map, $sprite))
|
76
|
+
@include background-size(ceil($spriteWidth * ($percent/100)) ceil($spriteHeight * ($percent/100)))
|
77
|
+
width: ceil($width*($percent/100))
|
78
|
+
height: ceil($height*($percent/100))
|
79
|
+
background-position: 0 floor(nth(sprite-position($map, $sprite), 2) * ($percent/100) )
|