bourbon 2.1.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. data/app/assets/stylesheets/_bourbon.scss +1 -0
  2. data/app/assets/stylesheets/css3/_background.scss +107 -0
  3. data/app/assets/stylesheets/css3/_border-radius.scss +10 -8
  4. data/app/assets/stylesheets/css3/_box-shadow.scss +1 -1
  5. data/app/assets/stylesheets/css3/_transition.scss +1 -1
  6. data/lib/bourbon/version.rb +1 -1
  7. data/readme.md +1 -1
  8. metadata +9 -62
  9. data/_config.yml +0 -42
  10. data/_includes/animation.html +0 -20
  11. data/_includes/appearance.html +0 -8
  12. data/_includes/background-image.html +0 -36
  13. data/_includes/background-size.html +0 -12
  14. data/_includes/border-image.html +0 -11
  15. data/_includes/border-radius.html +0 -26
  16. data/_includes/box-shadow.html +0 -20
  17. data/_includes/box-sizing.html +0 -8
  18. data/_includes/buttons.html +0 -52
  19. data/_includes/clearfix.html +0 -11
  20. data/_includes/columns.html +0 -9
  21. data/_includes/compact.html +0 -9
  22. data/_includes/complete-list.html +0 -115
  23. data/_includes/flex-box.html +0 -23
  24. data/_includes/flex-grid.html +0 -28
  25. data/_includes/font-family.html +0 -21
  26. data/_includes/footer.html +0 -37
  27. data/_includes/golden-ratio.html +0 -16
  28. data/_includes/grid-width.html +0 -15
  29. data/_includes/hide-text.html +0 -12
  30. data/_includes/html5-input-types.html +0 -22
  31. data/_includes/inline-block.html +0 -8
  32. data/_includes/intro.html +0 -5
  33. data/_includes/linear-gradient-function.html +0 -21
  34. data/_includes/linear-gradient.html +0 -24
  35. data/_includes/modular-scale.html +0 -20
  36. data/_includes/navigation.html +0 -43
  37. data/_includes/position.html +0 -18
  38. data/_includes/radial-gradient-function.html +0 -24
  39. data/_includes/radial-gradient.html +0 -26
  40. data/_includes/timing-functions.html +0 -47
  41. data/_includes/tint-shade.html +0 -13
  42. data/_includes/transform-origin.html +0 -8
  43. data/_includes/transform.html +0 -10
  44. data/_includes/transitions.html +0 -9
  45. data/_includes/user-select.html +0 -8
  46. data/_site/images/border.png +0 -0
  47. data/_site/images/bourbon-logo.png +0 -0
  48. data/_site/index.html +0 -890
  49. data/_site/stylesheets/style.css +0 -1226
  50. data/doc/README.md +0 -36
  51. data/images/border.png +0 -0
  52. data/images/bourbon-logo.png +0 -0
  53. data/index.html +0 -80
  54. data/stylesheets/sass/_animation-keyframes.scss +0 -31
  55. data/stylesheets/sass/_base.scss +0 -304
  56. data/stylesheets/sass/_demos.scss +0 -198
  57. data/stylesheets/sass/_mixins.scss +0 -21
  58. data/stylesheets/sass/_normalize.scss +0 -264
  59. data/stylesheets/sass/_pygments-theme-dark.scss +0 -38
  60. data/stylesheets/sass/_pygments-theme-light.scss +0 -37
  61. data/stylesheets/sass/style.scss +0 -10
  62. data/stylesheets/style.css +0 -1226
@@ -1,1226 +0,0 @@
1
- @charset "UTF-8";
2
- /*
3
- * HTML5 ✰ Boilerplate
4
- *
5
- * What follows is the result of much research on cross-browser styling.
6
- * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
7
- * Kroc Camen, and the H5BP dev community and team.
8
- */
9
- /* =============================================================================
10
- HTML5 element display
11
- ========================================================================== */
12
- article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
13
- display: block; }
14
-
15
- audio[controls], canvas, video {
16
- display: inline-block;
17
- *display: inline;
18
- *zoom: 1; }
19
-
20
- /* =============================================================================
21
- Base
22
- ========================================================================== */
23
- /*
24
- * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
25
- * http://clagnut.com/blog/348/#c790
26
- * 2. Force vertical scrollbar in non-IE
27
- * 3. Remove Android and iOS tap highlight color to prevent entire container being highlighted
28
- * www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
29
- * 4. Prevent iOS text size adjust on device orientation change, without disabling user zoom
30
- * www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
31
- */
32
- html {
33
- font-size: 100%;
34
- /*overflow-y: scroll;*/
35
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
36
- -webkit-text-size-adjust: 100%;
37
- -ms-text-size-adjust: 100%; }
38
-
39
- body {
40
- margin: 0;
41
- font-size: 13px;
42
- line-height: 1.231; }
43
-
44
- body, button, input, select, textarea {
45
- font-family: sans-serif;
46
- color: #222; }
47
-
48
- /*
49
- * These selection declarations have to be separate
50
- * No text-shadow: twitter.com/miketaylr/status/12228805301
51
- * Also: hot pink!
52
- */
53
- ::-moz-selection {
54
- background: #fe57a1;
55
- color: #fff;
56
- text-shadow: none; }
57
-
58
- ::selection {
59
- background: #fe57a1;
60
- color: #fff;
61
- text-shadow: none; }
62
-
63
- /* =============================================================================
64
- Links
65
- ========================================================================== */
66
- a {
67
- color: #00e; }
68
-
69
- a:visited {
70
- color: #551a8b; }
71
-
72
- a:focus {
73
- outline: thin dotted; }
74
-
75
- /* Improve readability when focused and hovered in all browsers: people.opera.com/patrickl/experiments/keyboard/test */
76
- a:hover, a:active {
77
- outline: 0; }
78
-
79
- /* =============================================================================
80
- Typography
81
- ========================================================================== */
82
- abbr[title] {
83
- border-bottom: 1px dotted; }
84
-
85
- b, strong {
86
- font-weight: bold; }
87
-
88
- blockquote {
89
- margin: 1em 40px; }
90
-
91
- dfn {
92
- font-style: italic; }
93
-
94
- hr {
95
- display: block;
96
- height: 1px;
97
- border: 0;
98
- border-top: 1px solid #ccc;
99
- margin: 1em 0;
100
- padding: 0; }
101
-
102
- ins {
103
- background: #ff9;
104
- color: #000;
105
- text-decoration: none; }
106
-
107
- mark {
108
- background: #ff0;
109
- color: #000;
110
- font-style: italic;
111
- font-weight: bold; }
112
-
113
- /* Redeclare monospace font family: en.wikipedia.org/wiki/User:Davidgothberg/Test59 */
114
- pre, code, kbd, samp {
115
- font-family: monospace, monospace;
116
- _font-family: 'courier new', monospace;
117
- font-size: 1em; }
118
-
119
- /* Improve readability of pre-formatted text in all browsers */
120
- pre {
121
- white-space: pre;
122
- white-space: pre-wrap;
123
- word-wrap: break-word; }
124
-
125
- q {
126
- quotes: none; }
127
-
128
- q:before, q:after {
129
- content: "";
130
- content: none; }
131
-
132
- small {
133
- font-size: 85%; }
134
-
135
- /* Position subscript and superscript content without affecting line-height: gist.github.com/413930 */
136
- sub, sup {
137
- font-size: 75%;
138
- line-height: 0;
139
- position: relative;
140
- vertical-align: baseline; }
141
-
142
- sup {
143
- top: -0.5em; }
144
-
145
- sub {
146
- bottom: -0.25em; }
147
-
148
- /* =============================================================================
149
- Lists
150
- ========================================================================== */
151
- ul, ol {
152
- margin: 1em 0;
153
- padding: 0 0 0 40px; }
154
-
155
- dd {
156
- margin: 0 0 0 40px; }
157
-
158
- nav ul, nav ol {
159
- list-style: none;
160
- margin: 0;
161
- padding: 0; }
162
-
163
- /* =============================================================================
164
- Embedded content
165
- ========================================================================== */
166
- /*
167
- * Improve image quality when scaled in IE7
168
- * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
169
- */
170
- img {
171
- border: 0;
172
- -ms-interpolation-mode: bicubic; }
173
-
174
- /*
175
- * Correct overflow displayed oddly in IE9
176
- */
177
- svg:not(:root) {
178
- overflow: hidden; }
179
-
180
- /* =============================================================================
181
- Figures
182
- ========================================================================== */
183
- figure {
184
- margin: 0; }
185
-
186
- /* =============================================================================
187
- Forms
188
- ========================================================================== */
189
- form {
190
- margin: 0; }
191
-
192
- fieldset {
193
- border: 0;
194
- margin: 0;
195
- padding: 0; }
196
-
197
- /*
198
- * 1. Correct color not inheriting in IE6/7/8/9
199
- * 2. Correct alignment displayed oddly in IE6/7
200
- */
201
- legend {
202
- border: 0;
203
- *margin-left: -7px;
204
- padding: 0; }
205
-
206
- /* Indicate that 'label' will shift focus to the associated form element */
207
- label {
208
- cursor: pointer; }
209
-
210
- /*
211
- * 1. Correct font-size not inheriting in all browsers
212
- * 2. Remove margins in FF3/4 S5 Chrome
213
- * 3. Define consistent vertical alignment display in all browsers
214
- */
215
- button, input, select, textarea {
216
- font-size: 100%;
217
- margin: 0;
218
- vertical-align: baseline;
219
- *vertical-align: middle; }
220
-
221
- /*
222
- * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
223
- * 2. Correct inner spacing displayed oddly in IE6/7
224
- */
225
- button, input {
226
- line-height: normal;
227
- *overflow: visible; }
228
-
229
- /*
230
- * 1. Display hand cursor for clickable form elements
231
- * 2. Allow styling of clickable form elements in iOS
232
- */
233
- button, input[type="button"], input[type="reset"], input[type="submit"] {
234
- cursor: pointer;
235
- -webkit-appearance: button; }
236
-
237
- /*
238
- * Consistent box sizing and appearance
239
- */
240
- input[type="checkbox"], input[type="radio"] {
241
- box-sizing: border-box; }
242
-
243
- input[type="search"] {
244
- -webkit-appearance: textfield;
245
- -moz-box-sizing: content-box;
246
- -webkit-box-sizing: content-box;
247
- box-sizing: content-box; }
248
-
249
- input[type="search"]::-webkit-search-decoration {
250
- -webkit-appearance: none; }
251
-
252
- /*
253
- * Remove inner padding and border in FF3/4
254
- * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
255
- */
256
- button::-moz-focus-inner, input::-moz-focus-inner {
257
- border: 0;
258
- padding: 0; }
259
-
260
- /* Remove default vertical scrollbar in IE6/7/8/9 */
261
- textarea {
262
- overflow: auto;
263
- vertical-align: top; }
264
-
265
- /* Colors for form validity */
266
- input:invalid, textarea:invalid {
267
- background-color: #f0dddd; }
268
-
269
- /* =============================================================================
270
- Tables
271
- ========================================================================== */
272
- table {
273
- border-collapse: collapse;
274
- border-spacing: 0; }
275
-
276
- /* =============================================================================
277
- Non-semantic helper classes
278
- Please define your styles before this section.
279
- ========================================================================== */
280
- /* Hide for both screenreaders and browsers:
281
- css-discuss.incutio.com/wiki/Screenreader_Visibility */
282
- .hidden {
283
- display: none;
284
- visibility: hidden; }
285
-
286
- /* Hide only visually, but have it available for screenreaders: by Jon Neal.
287
- www.webaim.org/techniques/css/invisiblecontent/ & j.mp/visuallyhidden */
288
- .visuallyhidden {
289
- border: 0;
290
- clip: rect(0 0 0 0);
291
- height: 1px;
292
- margin: -1px;
293
- overflow: hidden;
294
- padding: 0;
295
- position: absolute;
296
- width: 1px; }
297
-
298
- /* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
299
- .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
300
- clip: auto;
301
- height: auto;
302
- margin: 0;
303
- overflow: visible;
304
- position: static;
305
- width: auto; }
306
-
307
- /* Hide visually and from screenreaders, but maintain layout */
308
- .invisible {
309
- visibility: hidden; }
310
-
311
- /* Contain floats: nicolasgallagher.com/micro-clearfix-hack/ */
312
- .clearfix:before, nav.fixed-nav:before, div.main-content:before, .clearfix:after, nav.fixed-nav:after, div.main-content:after {
313
- content: "";
314
- display: table; }
315
-
316
- .clearfix:after, nav.fixed-nav:after, div.main-content:after {
317
- clear: both; }
318
-
319
- .clearfix, nav.fixed-nav, div.main-content {
320
- zoom: 1; }
321
-
322
- /* =============================================================================
323
- PLACEHOLDER Media Queries for Responsive Design.
324
- These override the primary ('mobile first') styles
325
- Modify as content requires.
326
- ========================================================================== */
327
- @media only screen and (min-width: 480px) {
328
- /* Style adjustments for viewports 480px and over go here */ }
329
- @media only screen and (min-width: 768px) {
330
- /* Style adjustments for viewports 768px and over go here */ }
331
- /* =============================================================================
332
- Print styles.
333
- Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
334
- ========================================================================== */
335
- @media print {
336
- * {
337
- background: transparent !important;
338
- color: black !important;
339
- text-shadow: none !important;
340
- filter: none !important;
341
- -ms-filter: none !important; }
342
-
343
- /* Black prints faster: sanbeiji.com/archives/953 */
344
- a, a:visited {
345
- color: #444 !important;
346
- text-decoration: underline; }
347
-
348
- a[href]:after {
349
- content: " (" attr(href) ")"; }
350
-
351
- abbr[title]:after {
352
- content: " (" attr(title) ")"; }
353
-
354
- .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
355
- content: ""; }
356
-
357
- /* Don't show links for images, or javascript/internal links */
358
- pre, blockquote {
359
- border: 1px solid #999;
360
- page-break-inside: avoid; }
361
-
362
- thead {
363
- display: table-header-group; }
364
-
365
- /* css-discuss.incutio.com/wiki/Printing_Tables */
366
- tr, img {
367
- page-break-inside: avoid; }
368
-
369
- img {
370
- max-width: 100% !important; }
371
-
372
- @page {
373
- margin: 0.5cm; }
374
-
375
- p, h2, h3 {
376
- orphans: 3;
377
- widows: 3; }
378
-
379
- h2, h3 {
380
- page-break-after: avoid; } }
381
- html, body {
382
- background-color: #f3f1ec;
383
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
384
- font-size: 13px;
385
- height: 100%;
386
- width: 100%; }
387
-
388
- html {
389
- padding: 0; }
390
-
391
- h1 {
392
- font-weight: 300;
393
- margin-top: 0; }
394
-
395
- h1, h2 {
396
- font-size: 26.652px; }
397
-
398
- h2 {
399
- font-weight: 300;
400
- margin-bottom: 0.5em;
401
- margin-top: 0; }
402
-
403
- p + h2, div.highlight + h2 {
404
- margin-top: 2em; }
405
-
406
- h3 {
407
- font-size: 18px;
408
- font-weight: 400;
409
- margin-bottom: 0.5em;
410
- margin-top: 2em; }
411
-
412
- h4, h5, h6 {
413
- font-size: 13px;
414
- margin-top: 0; }
415
-
416
- p {
417
- line-height: 1.5em; }
418
-
419
- a, a:link, a:active, a:visited {
420
- color: #2685f2;
421
- text-decoration: none; }
422
-
423
- a:hover {
424
- color: #0656b2; }
425
-
426
- nav.fixed-nav {
427
- clear: left;
428
- float: left;
429
- min-height: 300px;
430
- width: 228px; }
431
- nav.fixed-nav ul {
432
- border-bottom: 0;
433
- border-left: 0;
434
- border-top: 0;
435
- height: 100%;
436
- margin: 0;
437
- overflow-y: scroll;
438
- padding: 0;
439
- position: fixed;
440
- width: inherit; }
441
- nav.fixed-nav ul input[type="search"] {
442
- margin-left: 20px; }
443
- nav.fixed-nav ul li {
444
- line-height: 180%;
445
- list-style-type: none;
446
- text-transform: capitalize; }
447
- nav.fixed-nav ul li:first-child {
448
- margin-top: 15px; }
449
- nav.fixed-nav ul li.title:not(:first-child) {
450
- margin-bottom: 5px;
451
- margin-top: 15px; }
452
- nav.fixed-nav ul li.title.complete-list h3 {
453
- border-bottom: 0;
454
- -webkit-box-shadow: none;
455
- -moz-box-shadow: none;
456
- box-shadow: none; }
457
- nav.fixed-nav ul li a {
458
- display: block;
459
- padding: 0 20px;
460
- -webkit-transition: all 0.15s ease-out 0;
461
- -moz-transition: all 0.15s ease-out 0;
462
- -ms-transition: all 0.15s ease-out 0;
463
- -o-transition: all 0.15s ease-out 0;
464
- transition: all 0.15s ease-out 0; }
465
- nav.fixed-nav ul li a h3 {
466
- border-bottom: 1px solid #d8d1c0;
467
- -webkit-box-shadow: 0 1px 0 white;
468
- -moz-box-shadow: 0 1px 0 white;
469
- box-shadow: 0 1px 0 white;
470
- color: #4d4d4d;
471
- font-size: 12px;
472
- font-weight: bold;
473
- margin: 0;
474
- text-shadow: 0 1px 0 white;
475
- text-transform: uppercase; }
476
- nav.fixed-nav ul li a h3:hover {
477
- color: #666666; }
478
-
479
- div.main-content {
480
- margin: 0 auto;
481
- padding: 0px 16px;
482
- width: 1082px; }
483
-
484
- div.main-inner {
485
- background: white;
486
- border: 1px solid #d8d1c0;
487
- border-bottom: 0;
488
- border-top: 0;
489
- -webkit-box-sizing: border-box;
490
- -moz-box-sizing: border-box;
491
- box-sizing: border-box;
492
- clear: right;
493
- float: left;
494
- padding: 35px 0px;
495
- width: 854px; }
496
- div.main-inner h2.tagline {
497
- padding: 0 28px;
498
- margin: 20px 0 0; }
499
- div.main-inner > section h1 {
500
- background-color: #f3f1ec;
501
- border: 1px solid #e0e0e0;
502
- border-left: 0;
503
- border-right: 0;
504
- -webkit-box-shadow: 1px 0 0 #f3f1ec, -1px 0 0 #f3f1ec;
505
- -moz-box-shadow: 1px 0 0 #f3f1ec, -1px 0 0 #f3f1ec;
506
- box-shadow: 1px 0 0 #f3f1ec, -1px 0 0 #f3f1ec;
507
- font-size: 27px;
508
- font-weight: 500;
509
- line-height: 100%;
510
- margin: 30px 0 0;
511
- margin-top: 40px;
512
- padding: 15px 28px;
513
- text-shadow: 0 1px 0 white; }
514
- div.main-inner > section h1.logo {
515
- background-color: transparent;
516
- background-image: url(../images/bourbon-logo.png);
517
- background-repeat: no-repeat;
518
- border: 0;
519
- -webkit-box-shadow: none;
520
- -moz-box-shadow: none;
521
- box-shadow: none;
522
- height: 58px;
523
- margin-left: 24px;
524
- margin-top: 0;
525
- padding: 0;
526
- text-indent: -9999px; }
527
- div.main-inner > section > section {
528
- border-bottom: 1px solid #ebe8e0;
529
- padding: 30px 28px;
530
- -webkit-transition: all 0.15s ease-out 0;
531
- -moz-transition: all 0.15s ease-out 0;
532
- -ms-transition: all 0.15s ease-out 0;
533
- -o-transition: all 0.15s ease-out 0;
534
- transition: all 0.15s ease-out 0; }
535
- div.main-inner > section > section a.view-source {
536
- color: #c8c3b7;
537
- float: right;
538
- font-size: 13px;
539
- margin-top: 5px;
540
- padding: 2px 20px;
541
- text-shadow: 0 1px 0 white;
542
- text-transform: capitalize;
543
- -webkit-transition: all 0.15s ease-out 0;
544
- -moz-transition: all 0.15s ease-out 0;
545
- -ms-transition: all 0.15s ease-out 0;
546
- -o-transition: all 0.15s ease-out 0;
547
- transition: all 0.15s ease-out 0;
548
- opacity: 0; }
549
- div.main-inner > section > section a.view-source:hover {
550
- background-color: #f3f1ec;
551
- -webkit-border-radius: 20px;
552
- -moz-border-radius: 20px;
553
- border-radius: 20px;
554
- color: #a69f8c; }
555
- div.main-inner > section > section:hover a.view-source {
556
- opacity: 1; }
557
- div.main-inner > section > section#intro {
558
- border-bottom: none;
559
- padding-bottom: 0px;
560
- padding-top: 0; }
561
- div.main-inner > section > section#intro + h1 {
562
- margin-top: 40px; }
563
- div.main-inner > section > section#intro p a + a {
564
- margin-left: 20px; }
565
- div.main-inner > section > section#intro p:last-child {
566
- margin: 20px 0 50px; }
567
- div.main-inner > section > section:last-child {
568
- border: 0; }
569
- div.main-inner > section > section:target {
570
- -webkit-box-shadow: inset 4px 0 0px 0 #fc511d;
571
- -moz-box-shadow: inset 4px 0 0px 0 #fc511d;
572
- box-shadow: inset 4px 0 0px 0 #fc511d;
573
- -webkit-transition: all 0.3s;
574
- -moz-transition: all 0.3s;
575
- -ms-transition: all 0.3s;
576
- -o-transition: all 0.3s;
577
- transition: all 0.3s; }
578
- div.main-inner > section > section:target h2 {
579
- font-weight: 500; }
580
-
581
- div.wrapper {
582
- margin-bottom: 20px; }
583
-
584
- div.highlight {
585
- background-color: transparent;
586
- width: 100%; }
587
-
588
- pre {
589
- background-color: #fef9ec;
590
- -webkit-border-radius: 3px;
591
- -moz-border-radius: 3px;
592
- border-radius: 3px;
593
- -webkit-box-shadow: 0 0 0 1px #fbedc6;
594
- -moz-box-shadow: 0 0 0 1px #fbedc6;
595
- box-shadow: 0 0 0 1px #fbedc6;
596
- margin: 1em 0;
597
- overflow: auto;
598
- padding: 7px;
599
- -webkit-transition: all 0.15s ease-out 0;
600
- -moz-transition: all 0.15s ease-out 0;
601
- -ms-transition: all 0.15s ease-out 0;
602
- -o-transition: all 0.15s ease-out 0;
603
- transition: all 0.15s ease-out 0;
604
- white-space: pre;
605
- word-wrap: normal; }
606
- pre::-webkit-scrollbar {
607
- height: 7px;
608
- -webkit-appearance: none;
609
- width: 7px; }
610
- pre::-webkit-scrollbar-thumb {
611
- background-color: #f9e9be;
612
- border-radius: 4px;
613
- -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5); }
614
-
615
- p code, ul code, ol code {
616
- background-color: #f3f1ec;
617
- border: 1px solid #ebe8e0;
618
- color: #454545;
619
- padding: 0 .2em; }
620
-
621
- @-webkit-keyframes scale {
622
- 0% {
623
- -webkit-transform: scale(1);
624
- -moz-transform: scale(1);
625
- -ms-transform: scale(1);
626
- -o-transform: scale(1);
627
- transform: scale(1); }
628
-
629
- 50% {
630
- -webkit-transform: scale(2);
631
- -moz-transform: scale(2);
632
- -ms-transform: scale(2);
633
- -o-transform: scale(2);
634
- transform: scale(2); }
635
-
636
- 100% {
637
- -webkit-transform: scale(1);
638
- -moz-transform: scale(1);
639
- -ms-transform: scale(1);
640
- -o-transform: scale(1);
641
- transform: scale(1); } }
642
-
643
- @-moz-keyframes scale {
644
- 0% {
645
- -webkit-transform: scale(1);
646
- -moz-transform: scale(1);
647
- -ms-transform: scale(1);
648
- -o-transform: scale(1);
649
- transform: scale(1); }
650
-
651
- 50% {
652
- -webkit-transform: scale(2);
653
- -moz-transform: scale(2);
654
- -ms-transform: scale(2);
655
- -o-transform: scale(2);
656
- transform: scale(2); }
657
-
658
- 100% {
659
- -webkit-transform: scale(1);
660
- -moz-transform: scale(1);
661
- -ms-transform: scale(1);
662
- -o-transform: scale(1);
663
- transform: scale(1); } }
664
-
665
- @keyframes scale {
666
- 0% {
667
- -webkit-transform: scale(1);
668
- -moz-transform: scale(1);
669
- -ms-transform: scale(1);
670
- -o-transform: scale(1);
671
- transform: scale(1); }
672
-
673
- 50% {
674
- -webkit-transform: scale(2);
675
- -moz-transform: scale(2);
676
- -ms-transform: scale(2);
677
- -o-transform: scale(2);
678
- transform: scale(2); }
679
-
680
- 100% {
681
- -webkit-transform: scale(1);
682
- -moz-transform: scale(1);
683
- -ms-transform: scale(1);
684
- -o-transform: scale(1);
685
- transform: scale(1); } }
686
-
687
- @-webkit-keyframes slide {
688
- 0% {
689
- left: 0; }
690
-
691
- 50% {
692
- left: 100px; }
693
-
694
- 100% {
695
- left: 0; } }
696
-
697
- @-moz-keyframes slide {
698
- 0% {
699
- left: 0; }
700
-
701
- 50% {
702
- left: 100px; }
703
-
704
- 100% {
705
- left: 0; } }
706
-
707
- @keyframes slide {
708
- 0% {
709
- left: 0; }
710
-
711
- 50% {
712
- left: 100px; }
713
-
714
- 100% {
715
- left: 0; } }
716
-
717
- .highlight {
718
- color: #657b83;
719
- background-color: #fdf6e3; }
720
-
721
- .highlight .err {
722
- color: #dc322f;
723
- background-color: #eee8d5; }
724
-
725
- .highlight .cp {
726
- color: #93a1a1;
727
- font-weight: bold; }
728
-
729
- .highlight .cs {
730
- color: #93a1a1;
731
- font-weight: bold;
732
- font-style: italic; }
733
-
734
- .highlight .gd {
735
- background-color: #fdd; }
736
-
737
- .highlight .gd .x {
738
- background-color: #faa; }
739
-
740
- .highlight .ge {
741
- font-style: italic; }
742
-
743
- .highlight .gi {
744
- background-color: #dfd; }
745
-
746
- .highlight .gi .x {
747
- background-color: #afa; }
748
-
749
- .highlight .go {
750
- color: #657b83; }
751
-
752
- .highlight .gu {
753
- color: #d33682;
754
- font-weight: bold; }
755
-
756
- .highlight .gs {
757
- font-weight: bold; }
758
-
759
- .highlight .gr, .highlight .gt {
760
- color: #d33682; }
761
-
762
- .highlight .gh {
763
- color: #93a1a1; }
764
-
765
- .highlight .gp {
766
- color: #93a1a1; }
767
-
768
- .highlight .nb {
769
- color: #859900; }
770
-
771
- .highlight .ni {
772
- color: #d33682; }
773
-
774
- .highlight .nt {
775
- color: #268bd2; }
776
-
777
- .highlight .w {
778
- color: #93a1a1; }
779
-
780
- .highlight .sr {
781
- color: #859900; }
782
-
783
- .highlight .ss {
784
- color: #2aa198; }
785
-
786
- .highlight .c, .highlight .cm, .highlight .c1 {
787
- color: #93a1a1;
788
- font-style: italic; }
789
-
790
- .highlight .k, .highlight .kc, .highlight .kd, .highlight .kp, .highlight .kr, .highlight .kt, .highlight .o, .highlight .ow {
791
- font-weight: bold; }
792
-
793
- .highlight .k {
794
- color: #859900; }
795
-
796
- .highlight .kt {
797
- color: #b58900; }
798
-
799
- .highlight .bp {
800
- color: #586e75; }
801
-
802
- .highlight .nn {
803
- color: #586e75; }
804
-
805
- .highlight .nc {
806
- color: #b58900;
807
- font-weight: bold; }
808
-
809
- .highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .mo, .highlight .il {
810
- color: #2aa198; }
811
-
812
- .highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx, .highlight .s1 {
813
- color: #2aa198; }
814
-
815
- .highlight .na, .highlight .nv {
816
- color: #2aa198; }
817
-
818
- .highlight .no {
819
- color: #b58900; }
820
-
821
- .highlight .vc, .highlight .vg, .highlight .vi {
822
- color: #268bd2; }
823
-
824
- .highlight .ne, .highlight .nf {
825
- color: #dc322f;
826
- font-weight: bold; }
827
-
828
- div.box {
829
- -webkit-border-radius: 40px;
830
- -moz-border-radius: 40px;
831
- border-radius: 40px;
832
- border: 1px solid #2aa4b2;
833
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
834
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
835
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
836
- height: 40px;
837
- background-color: #8fdce5;
838
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #8fdce5), color-stop(100%, #3dc3d1));
839
- background-image: -webkit-linear-gradient(top, #8fdce5, #3dc3d1);
840
- background-image: -moz-linear-gradient(top, #8fdce5, #3dc3d1);
841
- background-image: -ms-linear-gradient(top, #8fdce5, #3dc3d1);
842
- background-image: -o-linear-gradient(top, #8fdce5, #3dc3d1);
843
- background-image: linear-gradient(top, #8fdce5, #3dc3d1);
844
- width: 40px; }
845
-
846
- section#animations div.box:hover {
847
- -webkit-animation-name: scale, slide;
848
- -moz-animation-name: scale, slide;
849
- animation-name: scale, slide;
850
- -webkit-animation-duration: 2s;
851
- -moz-animation-duration: 2s;
852
- animation-duration: 2s;
853
- -webkit-animation-timing-function: ease;
854
- -moz-animation-timing-function: ease;
855
- animation-timing-function: ease;
856
- -webkit-animation-iteration-count: infinite;
857
- -moz-animation-iteration-count: infinite;
858
- animation-iteration-count: infinite;
859
- position: relative; }
860
-
861
- section#background-image section.demo {
862
- background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 50%, transparent 50%), -webkit-linear-gradient(top, #8fdce5, #3dc3d1);
863
- background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 50%, transparent 50%), -moz-linear-gradient(top, #8fdce5, #3dc3d1);
864
- background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 50%, transparent 50%), -ms-linear-gradient(top, #8fdce5, #3dc3d1);
865
- background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 50%, transparent 50%), -o-linear-gradient(top, #8fdce5, #3dc3d1);
866
- background-image: linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 50%, transparent 50%), linear-gradient(top, #8fdce5, #3dc3d1);
867
- height: 40px;
868
- width: 100%; }
869
-
870
- section#border-image section.demo {
871
- -webkit-border-image: url(../images/border.png) 27 repeat;
872
- -moz-border-image: url(../images/border.png) 27 repeat;
873
- -o-border-image: url(../images/border.png) 27 repeat;
874
- border-image: url(../images/border.png) 27 repeat;
875
- border-width: 27px;
876
- width: 81px;
877
- height: 27px; }
878
-
879
- section#box-shadow section.demo div.example {
880
- background-image: -webkit-linear-gradient(top, #8fdce5, #3dc3d1);
881
- background-image: -moz-linear-gradient(top, #8fdce5, #3dc3d1);
882
- background-image: -ms-linear-gradient(top, #8fdce5, #3dc3d1);
883
- background-image: -o-linear-gradient(top, #8fdce5, #3dc3d1);
884
- background-image: linear-gradient(top, #8fdce5, #3dc3d1);
885
- height: 50px;
886
- width: 100px; }
887
- section#box-shadow section.demo div.example.single {
888
- -webkit-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.65);
889
- -moz-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.65);
890
- box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.65); }
891
- section#box-shadow section.demo div.example.double {
892
- -webkit-box-shadow: 1px 1px 5px 1px green, -1px -1px 5px 1px blue;
893
- -moz-box-shadow: 1px 1px 5px 1px green, -1px -1px 5px 1px blue;
894
- box-shadow: 1px 1px 5px 1px green, -1px -1px 5px 1px blue; }
895
-
896
- section#linear-gradient section.demo {
897
- background-color: #8fdce5;
898
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #8fdce5), color-stop(100%, #3dc3d1));
899
- background-image: -webkit-linear-gradient(top, #8fdce5, #3dc3d1);
900
- background-image: -moz-linear-gradient(top, #8fdce5, #3dc3d1);
901
- background-image: -ms-linear-gradient(top, #8fdce5, #3dc3d1);
902
- background-image: -o-linear-gradient(top, #8fdce5, #3dc3d1);
903
- background-image: linear-gradient(top, #8fdce5, #3dc3d1);
904
- height: 40px; }
905
-
906
- section#linear-gradient-function section.demo {
907
- background-image: -webkit-linear-gradient(top, #8fdce5, #3dc3d1);
908
- background-image: -moz-linear-gradient(top, #8fdce5, #3dc3d1);
909
- background-image: -ms-linear-gradient(top, #8fdce5, #3dc3d1);
910
- background-image: -o-linear-gradient(top, #8fdce5, #3dc3d1);
911
- background-image: linear-gradient(top, #8fdce5, #3dc3d1);
912
- height: 40px; }
913
-
914
- section#radial-gradient section.demo, section#radial-gradient-function section.demo {
915
- background-color: false;
916
- background-image: -webkit-gradient(radial, center center, 0, center center, 460, color-stop(0%, #8fdce5), color-stop(100%, #3dc3d1));
917
- background-image: -webkit-radial-gradient(50% 50%, circle cover, #8fdce5, #3dc3d1);
918
- background-image: -moz-radial-gradient(50% 50%, circle cover, #8fdce5, #3dc3d1);
919
- background-image: -ms-radial-gradient(50% 50%, circle cover, #8fdce5, #3dc3d1);
920
- background-image: -o-radial-gradient(50% 50%, circle cover, #8fdce5, #3dc3d1);
921
- background-image: radial-gradient(50% 50%, circle cover, #8fdce5, #3dc3d1);
922
- height: 40px; }
923
-
924
- section#buttons section.demo button.example-1 {
925
- border: 1px solid #076fe4;
926
- -webkit-border-radius: 3px;
927
- -moz-border-radius: 3px;
928
- border-radius: 3px;
929
- -webkit-box-shadow: inset 0 1px 0 0 #8ebcf1;
930
- -moz-box-shadow: inset 0 1px 0 0 #8ebcf1;
931
- box-shadow: inset 0 1px 0 0 #8ebcf1;
932
- color: white;
933
- display: inline-block;
934
- font-size: 11px;
935
- font-weight: bold;
936
- background-color: #4294f0;
937
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4294f0), color-stop(100%, #0776f3));
938
- background-image: -webkit-linear-gradient(top, #4294f0, #0776f3);
939
- background-image: -moz-linear-gradient(top, #4294f0, #0776f3);
940
- background-image: -ms-linear-gradient(top, #4294f0, #0776f3);
941
- background-image: -o-linear-gradient(top, #4294f0, #0776f3);
942
- background-image: linear-gradient(top, #4294f0, #0776f3);
943
- padding: 7px 18px;
944
- text-decoration: none;
945
- text-shadow: 0 1px 0 #0065d6;
946
- -webkit-background-clip: padding-box; }
947
- section#buttons section.demo button.example-1:hover {
948
- -webkit-box-shadow: inset 0 1px 0 0 #60a2ec;
949
- -moz-box-shadow: inset 0 1px 0 0 #60a2ec;
950
- box-shadow: inset 0 1px 0 0 #60a2ec;
951
- cursor: pointer;
952
- background-color: #2f87ea;
953
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2f87ea), color-stop(100%, #086fe3));
954
- background-image: -webkit-linear-gradient(top, #2f87ea, #086fe3);
955
- background-image: -moz-linear-gradient(top, #2f87ea, #086fe3);
956
- background-image: -ms-linear-gradient(top, #2f87ea, #086fe3);
957
- background-image: -o-linear-gradient(top, #2f87ea, #086fe3);
958
- background-image: linear-gradient(top, #2f87ea, #086fe3); }
959
- section#buttons section.demo button.example-1:active {
960
- border: 1px solid #076fe4;
961
- -webkit-box-shadow: inset 0 0 8px 4px #0868d3, inset 0 0 8px 4px #0868d3, 0 1px 1px 0 #eeeeee;
962
- -moz-box-shadow: inset 0 0 8px 4px #0868d3, inset 0 0 8px 4px #0868d3, 0 1px 1px 0 #eeeeee;
963
- box-shadow: inset 0 0 8px 4px #0868d3, inset 0 0 8px 4px #0868d3, 0 1px 1px 0 #eeeeee; }
964
- section#buttons section.demo button.example-2 {
965
- border: 1px solid #3371b2;
966
- border-color: #3371b2 #2457a3 #164297;
967
- -webkit-border-radius: 16px;
968
- -moz-border-radius: 16px;
969
- border-radius: 16px;
970
- -webkit-box-shadow: inset 0 1px 0 0 #64a9f2, 0 1px 2px 0 #b3b3b3;
971
- -moz-box-shadow: inset 0 1px 0 0 #64a9f2, 0 1px 2px 0 #b3b3b3;
972
- box-shadow: inset 0 1px 0 0 #64a9f2, 0 1px 2px 0 #b3b3b3;
973
- color: white;
974
- display: inline-block;
975
- font-size: 11px;
976
- font-weight: normal;
977
- line-height: 1;
978
- background-color: #4294f0;
979
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4294f0), color-stop(100%, #0156fe));
980
- background-image: -webkit-linear-gradient(top, #4294f0, #0156fe);
981
- background-image: -moz-linear-gradient(top, #4294f0, #0156fe);
982
- background-image: -ms-linear-gradient(top, #4294f0, #0156fe);
983
- background-image: -o-linear-gradient(top, #4294f0, #0156fe);
984
- background-image: linear-gradient(top, #4294f0, #0156fe);
985
- padding: 5px 16px;
986
- text-align: center;
987
- text-decoration: none;
988
- text-shadow: 0 -1px 1px #2762bf;
989
- -webkit-background-clip: padding-box; }
990
- section#buttons section.demo button.example-2:hover {
991
- border: 1px solid #2062a7;
992
- border-color: #2062a7 #0e479a #01318e;
993
- -webkit-box-shadow: inset 0 1px 0 0 #519cf0;
994
- -moz-box-shadow: inset 0 1px 0 0 #519cf0;
995
- box-shadow: inset 0 1px 0 0 #519cf0;
996
- cursor: pointer;
997
- background-color: #2d88ee;
998
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2d88ee), color-stop(100%, #1554ce));
999
- background-image: -webkit-linear-gradient(top, #2d88ee, #1554ce);
1000
- background-image: -moz-linear-gradient(top, #2d88ee, #1554ce);
1001
- background-image: -ms-linear-gradient(top, #2d88ee, #1554ce);
1002
- background-image: -o-linear-gradient(top, #2d88ee, #1554ce);
1003
- background-image: linear-gradient(top, #2d88ee, #1554ce);
1004
- text-shadow: 0 -1px 1px #134faf;
1005
- -webkit-background-clip: padding-box; }
1006
- section#buttons section.demo button.example-2:active {
1007
- background: #226edd;
1008
- border: 1px solid #0d3c8c;
1009
- border-bottom: 1px solid #062d8d;
1010
- -webkit-box-shadow: inset 0 0 6px 3px #0c44b8, 0 1px 0 0 white;
1011
- -moz-box-shadow: inset 0 0 6px 3px #0c44b8, 0 1px 0 0 white;
1012
- box-shadow: inset 0 0 6px 3px #0c44b8, 0 1px 0 0 white;
1013
- text-shadow: 0 -1px 1px #1a52aa; }
1014
- section#buttons section.demo button.example-3 {
1015
- border: 1px solid #8a0000;
1016
- border-bottom: 1px solid #810000;
1017
- -webkit-border-radius: 5px;
1018
- -moz-border-radius: 5px;
1019
- border-radius: 5px;
1020
- -webkit-box-shadow: inset 0 1px 0 0 #ff1d0c;
1021
- -moz-box-shadow: inset 0 1px 0 0 #ff1d0c;
1022
- box-shadow: inset 0 1px 0 0 #ff1d0c;
1023
- color: white;
1024
- display: inline-block;
1025
- font-size: 14px;
1026
- font-weight: bold;
1027
- background-color: red;
1028
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, red), color-stop(50%, #c70000), color-stop(50%, #a90000), color-stop(100%, #b00000));
1029
- background-image: -webkit-linear-gradient(top, red 0%, #c70000 50%, #a90000 50%, #b00000 100%);
1030
- background-image: -moz-linear-gradient(top, red 0%, #c70000 50%, #a90000 50%, #b00000 100%);
1031
- background-image: -ms-linear-gradient(top, red 0%, #c70000 50%, #a90000 50%, #b00000 100%);
1032
- background-image: -o-linear-gradient(top, red 0%, #c70000 50%, #a90000 50%, #b00000 100%);
1033
- background-image: linear-gradient(top, red 0%, #c70000 50%, #a90000 50%, #b00000 100%);
1034
- padding: 8px 20px;
1035
- text-align: center;
1036
- text-decoration: none;
1037
- text-shadow: 0 -1px 1px #730000; }
1038
- section#buttons section.demo button.example-3:hover {
1039
- cursor: pointer;
1040
- background-color: #f20000;
1041
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f20000), color-stop(50%, #bd0000), color-stop(50%, #a20000), color-stop(100%, #a90000));
1042
- background-image: -webkit-linear-gradient(top, #f20000 0%, #bd0000 50%, #a20000 50%, #a90000 100%);
1043
- background-image: -moz-linear-gradient(top, #f20000 0%, #bd0000 50%, #a20000 50%, #a90000 100%);
1044
- background-image: -ms-linear-gradient(top, #f20000 0%, #bd0000 50%, #a20000 50%, #a90000 100%);
1045
- background-image: -o-linear-gradient(top, #f20000 0%, #bd0000 50%, #a20000 50%, #a90000 100%);
1046
- background-image: linear-gradient(top, #f20000 0%, #bd0000 50%, #a20000 50%, #a90000 100%); }
1047
- section#buttons section.demo button.example-3:active {
1048
- -webkit-box-shadow: inset 0 0 20px 0 #900000, 0 1px 0 white;
1049
- -moz-box-shadow: inset 0 0 20px 0 #900000, 0 1px 0 white;
1050
- box-shadow: inset 0 0 20px 0 #900000, 0 1px 0 white; }
1051
-
1052
- section#timing-functions section.demo ul {
1053
- margin: 0;
1054
- padding: 0; }
1055
- section#timing-functions section.demo ul li {
1056
- list-style-type: none; }
1057
- section#timing-functions section.demo code {
1058
- display: inline-block;
1059
- width: 228px;
1060
- margin-right: 16px;
1061
- vertical-align: top; }
1062
- section#timing-functions section.demo div.box {
1063
- display: inline-block; }
1064
- section#timing-functions section.demo:hover div.box {
1065
- -webkit-transform: translateX(500px);
1066
- -moz-transform: translateX(500px);
1067
- -ms-transform: translateX(500px);
1068
- -o-transform: translateX(500px);
1069
- transform: translateX(500px); }
1070
- section#timing-functions section.demo div.box {
1071
- height: 20px;
1072
- width: 20px;
1073
- -webkit-transition-property: all;
1074
- -moz-transition-property: all;
1075
- -ms-transition-property: all;
1076
- -o-transition-property: all;
1077
- transition-property: all;
1078
- -webkit-transition-duration: 3s;
1079
- -moz-transition-duration: 3s;
1080
- -ms-transition-duration: 3s;
1081
- -o-transition-duration: 3s;
1082
- transition-duration: 3s; }
1083
- section#timing-functions section.demo div.ease-in-quad {
1084
- -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
1085
- -moz-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
1086
- -ms-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
1087
- -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
1088
- transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }
1089
- section#timing-functions section.demo div.ease-in-cubic {
1090
- -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1091
- -moz-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1092
- -ms-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1093
- -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1094
- transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
1095
- section#timing-functions section.demo div.ease-in-quart {
1096
- -webkit-transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
1097
- -moz-transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
1098
- -ms-transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
1099
- -o-transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
1100
- transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22); }
1101
- section#timing-functions section.demo div.ease-in-quint {
1102
- -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1103
- -moz-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1104
- -ms-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1105
- -o-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1106
- transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); }
1107
- section#timing-functions section.demo div.ease-in-sine {
1108
- -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
1109
- -moz-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
1110
- -ms-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
1111
- -o-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
1112
- transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715); }
1113
- section#timing-functions section.demo div.ease-in-expo {
1114
- -webkit-transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
1115
- -moz-transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
1116
- -ms-transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
1117
- -o-transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
1118
- transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035); }
1119
- section#timing-functions section.demo div.ease-in-circ {
1120
- -webkit-transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
1121
- -moz-transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
1122
- -ms-transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
1123
- -o-transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
1124
- transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335); }
1125
- section#timing-functions section.demo div.ease-in-back {
1126
- -webkit-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
1127
- -moz-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
1128
- -ms-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
1129
- -o-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
1130
- transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045); }
1131
- section#timing-functions section.demo div.ease-out-quad {
1132
- -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
1133
- -moz-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
1134
- -ms-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
1135
- -o-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
1136
- transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }
1137
- section#timing-functions section.demo div.ease-out-cubic {
1138
- -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1139
- -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1140
- -ms-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1141
- -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1142
- transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
1143
- section#timing-functions section.demo div.ease-out-quart {
1144
- -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
1145
- -moz-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
1146
- -ms-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
1147
- -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
1148
- transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
1149
- section#timing-functions section.demo div.ease-out-quint {
1150
- -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1151
- -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1152
- -ms-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1153
- -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1154
- transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); }
1155
- section#timing-functions section.demo div.ease-out-sine {
1156
- -webkit-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
1157
- -moz-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
1158
- -ms-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
1159
- -o-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
1160
- transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); }
1161
- section#timing-functions section.demo div.ease-out-expo {
1162
- -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
1163
- -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
1164
- -ms-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
1165
- -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
1166
- transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
1167
- section#timing-functions section.demo div.ease-out-circ {
1168
- -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
1169
- -moz-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
1170
- -ms-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
1171
- -o-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
1172
- transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1); }
1173
- section#timing-functions section.demo div.ease-out-back {
1174
- -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
1175
- -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
1176
- -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
1177
- -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
1178
- transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
1179
- section#timing-functions section.demo div.ease-in-out-quad {
1180
- -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
1181
- -moz-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
1182
- -ms-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
1183
- -o-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
1184
- transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }
1185
- section#timing-functions section.demo div.ease-in-out-cubic {
1186
- -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
1187
- -moz-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
1188
- -ms-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
1189
- -o-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
1190
- transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); }
1191
- section#timing-functions section.demo div.ease-in-out-quart {
1192
- -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
1193
- -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
1194
- -ms-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
1195
- -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
1196
- transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1); }
1197
- section#timing-functions section.demo div.ease-in-out-quint {
1198
- -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
1199
- -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
1200
- -ms-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
1201
- -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
1202
- transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1); }
1203
- section#timing-functions section.demo div.ease-in-out-sine {
1204
- -webkit-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
1205
- -moz-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
1206
- -ms-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
1207
- -o-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
1208
- transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95); }
1209
- section#timing-functions section.demo div.ease-in-out-expo {
1210
- -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
1211
- -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
1212
- -ms-transition-timing-function: cubic-bezier(1, 0, 0, 1);
1213
- -o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
1214
- transition-timing-function: cubic-bezier(1, 0, 0, 1); }
1215
- section#timing-functions section.demo div.ease-in-out-circ {
1216
- -webkit-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
1217
- -moz-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
1218
- -ms-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
1219
- -o-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
1220
- transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86); }
1221
- section#timing-functions section.demo div.ease-in-out-back {
1222
- -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
1223
- -moz-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
1224
- -ms-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
1225
- -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
1226
- transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }