active_frontend 13.3.0 → 14.0.0
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/.DS_Store +0 -0
- data/.fasterer.yml +19 -0
- data/.reek +27 -0
- data/.rubocop.yml +38 -0
- data/.scss-lint.yml +27 -0
- data/Rakefile +1 -1
- data/active_frontend.gemspec +21 -18
- data/app/.DS_Store +0 -0
- data/app/assets/.DS_Store +0 -0
- data/app/assets/fonts/.DS_Store +0 -0
- data/app/assets/fonts/dripicons/.DS_Store +0 -0
- data/app/assets/fonts/dripicons/dripicons.woff +0 -0
- data/app/assets/fonts/fakt-pro/.DS_Store +0 -0
- data/app/assets/fonts/fakt-pro/fakt-pro-bold.woff +0 -0
- data/app/assets/fonts/fakt-pro/fakt-pro-normal.woff +0 -0
- data/app/assets/fonts/fakt-pro/fakt-pro-semibold.woff +0 -0
- data/app/assets/fonts/fakt-pro/fakt-pro-semilight.woff +0 -0
- data/app/assets/fonts/fakt-soft-pro/.DS_Store +0 -0
- data/app/assets/fonts/fakt-soft-pro/fakt-soft-pro-bold.woff +0 -0
- data/app/assets/fonts/fakt-soft-pro/fakt-soft-pro-normal.woff +0 -0
- data/app/assets/fonts/fakt-soft-pro/fakt-soft-pro-semibold.woff +0 -0
- data/app/assets/fonts/fakt-soft-pro/fakt-soft-pro-semilight.woff +0 -0
- data/app/assets/images/.DS_Store +0 -0
- data/app/assets/images/.keep +0 -0
- data/app/assets/images/placeholders/.DS_Store +0 -0
- data/app/assets/images/placeholders/camera-large.png +0 -0
- data/app/assets/images/placeholders/camera-small.png +0 -0
- data/app/assets/images/placeholders/camera.png +0 -0
- data/app/assets/images/placeholders/document-large.png +0 -0
- data/app/assets/images/placeholders/document-small.png +0 -0
- data/app/assets/images/placeholders/document.png +0 -0
- data/app/assets/images/placeholders/photo-large.png +0 -0
- data/app/assets/images/placeholders/{picture-small.png → photo-small.png} +0 -0
- data/app/assets/images/placeholders/photo.png +0 -0
- data/app/assets/images/placeholders/store-large.png +0 -0
- data/app/assets/images/placeholders/store-small.png +0 -0
- data/app/assets/images/placeholders/store.png +0 -0
- data/app/assets/images/placeholders/user-large.png +0 -0
- data/app/assets/images/placeholders/user-small.png +0 -0
- data/app/assets/images/placeholders/user.png +0 -0
- data/app/helpers/active_frontend_helper.rb +22 -37
- data/lib/.DS_Store +0 -0
- data/lib/active_frontend.rb +3 -4
- data/lib/active_frontend/.DS_Store +0 -0
- data/lib/active_frontend/version.rb +1 -1
- data/lib/generators/active_frontend/install_generator.rb +3 -3
- data/lib/generators/active_frontend/templates/install.js +35 -30
- data/lib/generators/active_frontend/templates/install.scss +55 -58
- data/vendor/.DS_Store +0 -0
- data/vendor/assets/.DS_Store +0 -0
- data/vendor/assets/javascripts/.DS_Store +0 -0
- data/vendor/assets/javascripts/active_frontend.js +35 -30
- data/vendor/assets/javascripts/base/_affix.js +170 -0
- data/vendor/assets/javascripts/base/_alert.js +80 -0
- data/vendor/assets/javascripts/base/_animation.js +106 -0
- data/vendor/assets/javascripts/base/_button.js +123 -0
- data/vendor/assets/javascripts/base/_carousel.js +237 -0
- data/vendor/assets/javascripts/base/_collapse.js +200 -0
- data/vendor/assets/javascripts/base/_colorpicker.js +147 -0
- data/vendor/assets/javascripts/base/_datepicker.js +1411 -0
- data/vendor/assets/javascripts/base/_dropdown.js +154 -0
- data/vendor/assets/javascripts/base/_filepicker.js +235 -0
- data/vendor/assets/javascripts/base/_hoverdown.js +116 -0
- data/vendor/assets/javascripts/base/_layout.js +126 -0
- data/vendor/assets/javascripts/base/_list.js +103 -0
- data/vendor/assets/javascripts/{_modal.js → base/_modal.js} +170 -167
- data/vendor/assets/javascripts/base/_popover.js +101 -0
- data/vendor/assets/javascripts/base/_scrollspy.js +161 -0
- data/vendor/assets/javascripts/base/_switch.js +160 -0
- data/vendor/assets/javascripts/base/_tab.js +139 -0
- data/vendor/assets/javascripts/base/_table.js +224 -0
- data/vendor/assets/javascripts/base/_timeago.js +270 -0
- data/vendor/assets/javascripts/base/_timepicker.js +541 -0
- data/vendor/assets/javascripts/base/_tooltip.js +525 -0
- data/vendor/assets/javascripts/base/_tour.js +268 -0
- data/vendor/assets/javascripts/base/_transition.js +52 -0
- data/vendor/assets/javascripts/base/_typeahead.js +362 -0
- data/vendor/assets/javascripts/extensions/_calendar.js +4709 -0
- data/vendor/assets/javascripts/extensions/_chart.js +9371 -0
- data/vendor/assets/javascripts/extensions/_map.js +2153 -0
- data/vendor/assets/stylesheets/.DS_Store +0 -0
- data/vendor/assets/stylesheets/{_mixin.scss → _utility.scss} +96 -10
- data/vendor/assets/stylesheets/_variable.scss +201 -19
- data/vendor/assets/stylesheets/active_frontend.scss +55 -58
- data/vendor/assets/stylesheets/blocks/_anchor.scss +15 -0
- data/vendor/assets/stylesheets/blocks/_button.scss +278 -0
- data/vendor/assets/stylesheets/blocks/_code.scss +144 -0
- data/vendor/assets/stylesheets/blocks/_common.scss +127 -0
- data/vendor/assets/stylesheets/blocks/_form.scss +508 -0
- data/vendor/assets/stylesheets/blocks/_icon.scss +359 -0
- data/vendor/assets/stylesheets/blocks/_list.scss +76 -0
- data/vendor/assets/stylesheets/blocks/_multimedia.scss +62 -0
- data/vendor/assets/stylesheets/blocks/_reset.scss +179 -0
- data/vendor/assets/stylesheets/blocks/_table.scss +211 -0
- data/vendor/assets/stylesheets/blocks/_typography.scss +204 -0
- data/vendor/assets/stylesheets/components/_ad.scss +78 -0
- data/vendor/assets/stylesheets/components/_affix.scss +14 -0
- data/vendor/assets/stylesheets/components/_alert.scss +50 -0
- data/vendor/assets/stylesheets/components/_animation.scss +1670 -0
- data/vendor/assets/stylesheets/components/_breadcrumb.scss +17 -0
- data/vendor/assets/stylesheets/components/_calendar.scss +213 -0
- data/vendor/assets/stylesheets/components/_card.scss +30 -0
- data/vendor/assets/stylesheets/components/_carousel.scss +135 -0
- data/vendor/assets/stylesheets/components/_chart.scss +10 -0
- data/vendor/assets/stylesheets/components/_collapse.scss +17 -0
- data/vendor/assets/stylesheets/components/_colorpicker.scss +38 -0
- data/vendor/assets/stylesheets/components/_datepicker.scss +80 -0
- data/vendor/assets/stylesheets/components/_dropmenu.scss +151 -0
- data/vendor/assets/stylesheets/components/_footer.scss +11 -0
- data/vendor/assets/stylesheets/components/_grid.scss +144 -0
- data/vendor/assets/stylesheets/components/_header.scss +99 -0
- data/vendor/assets/stylesheets/components/_label_and_badge.scss +57 -0
- data/vendor/assets/stylesheets/components/_layout.scss +63 -0
- data/vendor/assets/stylesheets/components/_map.scss +14 -0
- data/vendor/assets/stylesheets/components/_milestone.scss +49 -0
- data/vendor/assets/stylesheets/components/_missive.scss +40 -0
- data/vendor/assets/stylesheets/components/_modal.scss +126 -0
- data/vendor/assets/stylesheets/components/_nav_and_tab.scss +202 -0
- data/vendor/assets/stylesheets/components/_navbar.scss +66 -0
- data/vendor/assets/stylesheets/components/_pagination.scss +79 -0
- data/vendor/assets/stylesheets/components/_placeholder.scss +23 -0
- data/vendor/assets/stylesheets/components/_popover.scss +167 -0
- data/vendor/assets/stylesheets/components/_progress.scss +62 -0
- data/vendor/assets/stylesheets/components/_sidebar.scss +74 -0
- data/vendor/assets/stylesheets/components/_spinner.scss +83 -0
- data/vendor/assets/stylesheets/components/_switch.scss +150 -0
- data/vendor/assets/stylesheets/components/_timepicker.scss +30 -0
- data/vendor/assets/stylesheets/components/_tooltip.scss +93 -0
- data/vendor/assets/stylesheets/components/_transition.scss +12 -0
- data/vendor/assets/stylesheets/components/_typeahead.scss +18 -0
- metadata +150 -94
- data/app/assets/fonts/gotham/gotham-bold.woff +0 -0
- data/app/assets/fonts/gotham/gotham-book.woff +0 -0
- data/app/assets/fonts/gotham/gotham-light.woff +0 -0
- data/app/assets/fonts/gotham/gotham-medium.woff +0 -0
- data/app/assets/fonts/gotham/gotham-rounded-bold.woff +0 -0
- data/app/assets/fonts/gotham/gotham-rounded-book.woff +0 -0
- data/app/assets/fonts/gotham/gotham-rounded-light.woff +0 -0
- data/app/assets/fonts/gotham/gotham-rounded-medium.woff +0 -0
- data/app/assets/images/placeholders/archive-large.png +0 -0
- data/app/assets/images/placeholders/archive-small.png +0 -0
- data/app/assets/images/placeholders/archive.png +0 -0
- data/app/assets/images/placeholders/picture-large.png +0 -0
- data/app/assets/images/placeholders/picture.png +0 -0
- data/vendor/assets/javascripts/_affix.js +0 -153
- data/vendor/assets/javascripts/_alert.js +0 -85
- data/vendor/assets/javascripts/_animation.js +0 -103
- data/vendor/assets/javascripts/_button.js +0 -107
- data/vendor/assets/javascripts/_carousel.js +0 -228
- data/vendor/assets/javascripts/_chart.js +0 -3742
- data/vendor/assets/javascripts/_collapse.js +0 -202
- data/vendor/assets/javascripts/_color_picker.js +0 -108
- data/vendor/assets/javascripts/_date_picker.js +0 -1650
- data/vendor/assets/javascripts/_dropdown.js +0 -156
- data/vendor/assets/javascripts/_file_input.js +0 -71
- data/vendor/assets/javascripts/_hoverdown.js +0 -109
- data/vendor/assets/javascripts/_inputmask.js +0 -341
- data/vendor/assets/javascripts/_loader.js +0 -361
- data/vendor/assets/javascripts/_map.js +0 -2401
- data/vendor/assets/javascripts/_popover.js +0 -99
- data/vendor/assets/javascripts/_scrollspy.js +0 -163
- data/vendor/assets/javascripts/_slider.js +0 -1572
- data/vendor/assets/javascripts/_sort.js +0 -1432
- data/vendor/assets/javascripts/_swoggle.js +0 -415
- data/vendor/assets/javascripts/_tab.js +0 -146
- data/vendor/assets/javascripts/_tablespy.js +0 -1883
- data/vendor/assets/javascripts/_time_ago.js +0 -206
- data/vendor/assets/javascripts/_time_picker.js +0 -1088
- data/vendor/assets/javascripts/_tooltip.js +0 -504
- data/vendor/assets/javascripts/_transition.js +0 -50
- data/vendor/assets/javascripts/_typeahead.js +0 -366
- data/vendor/assets/stylesheets/_ad.scss +0 -63
- data/vendor/assets/stylesheets/_affix.scss +0 -14
- data/vendor/assets/stylesheets/_alert.scss +0 -114
- data/vendor/assets/stylesheets/_animation.scss +0 -1370
- data/vendor/assets/stylesheets/_breadcrumb.scss +0 -100
- data/vendor/assets/stylesheets/_button.scss +0 -386
- data/vendor/assets/stylesheets/_canvas.scss +0 -182
- data/vendor/assets/stylesheets/_carousel.scss +0 -158
- data/vendor/assets/stylesheets/_chart.scss +0 -15
- data/vendor/assets/stylesheets/_code.scss +0 -150
- data/vendor/assets/stylesheets/_collapse.scss +0 -14
- data/vendor/assets/stylesheets/_color.scss +0 -55
- data/vendor/assets/stylesheets/_colorpicker.scss +0 -63
- data/vendor/assets/stylesheets/_datepicker.scss +0 -122
- data/vendor/assets/stylesheets/_dropdown.scss +0 -248
- data/vendor/assets/stylesheets/_footer.scss +0 -71
- data/vendor/assets/stylesheets/_form.scss +0 -661
- data/vendor/assets/stylesheets/_grid.scss +0 -184
- data/vendor/assets/stylesheets/_header.scss +0 -156
- data/vendor/assets/stylesheets/_icon.scss +0 -362
- data/vendor/assets/stylesheets/_image.scss +0 -33
- data/vendor/assets/stylesheets/_label_and_badge.scss +0 -104
- data/vendor/assets/stylesheets/_link.scss +0 -55
- data/vendor/assets/stylesheets/_list.scss +0 -122
- data/vendor/assets/stylesheets/_loader.scss +0 -71
- data/vendor/assets/stylesheets/_map.scss +0 -44
- data/vendor/assets/stylesheets/_missive.scss +0 -74
- data/vendor/assets/stylesheets/_modal.scss +0 -204
- data/vendor/assets/stylesheets/_nav_and_tab.scss +0 -230
- data/vendor/assets/stylesheets/_navbar.scss +0 -73
- data/vendor/assets/stylesheets/_pagination.scss +0 -79
- data/vendor/assets/stylesheets/_panel.scss +0 -80
- data/vendor/assets/stylesheets/_placeholder.scss +0 -63
- data/vendor/assets/stylesheets/_popover.scss +0 -128
- data/vendor/assets/stylesheets/_progress.scss +0 -86
- data/vendor/assets/stylesheets/_reset.scss +0 -140
- data/vendor/assets/stylesheets/_sidebar.scss +0 -148
- data/vendor/assets/stylesheets/_slider.scss +0 -151
- data/vendor/assets/stylesheets/_spinner.scss +0 -572
- data/vendor/assets/stylesheets/_subheader.scss +0 -112
- data/vendor/assets/stylesheets/_swoggle.scss +0 -120
- data/vendor/assets/stylesheets/_table.scss +0 -210
- data/vendor/assets/stylesheets/_timepicker.scss +0 -77
- data/vendor/assets/stylesheets/_toolbar.scss +0 -130
- data/vendor/assets/stylesheets/_tooltip.scss +0 -105
- data/vendor/assets/stylesheets/_transition.scss +0 -11
- data/vendor/assets/stylesheets/_trunk.scss +0 -147
- data/vendor/assets/stylesheets/_typeahead.scss +0 -18
- data/vendor/assets/stylesheets/_typography.scss +0 -233
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/* Table of Contents
|
|
2
|
-
==================================================
|
|
3
|
-
# Affix */
|
|
4
|
-
|
|
5
|
-
/* # Affix
|
|
6
|
-
================================================== */
|
|
7
|
-
.affix {
|
|
8
|
-
position: fixed;
|
|
9
|
-
z-index: 1030;
|
|
10
|
-
}
|
|
11
|
-
.affix-bottom {
|
|
12
|
-
position: absolute;
|
|
13
|
-
top: auto;
|
|
14
|
-
}
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
/* Table of Contents
|
|
2
|
-
==================================================
|
|
3
|
-
# Variables
|
|
4
|
-
# Alert
|
|
5
|
-
# Styles
|
|
6
|
-
# Colors */
|
|
7
|
-
|
|
8
|
-
/* # Variables
|
|
9
|
-
================================================== */
|
|
10
|
-
$onblack-colors: (
|
|
11
|
-
dark-haze: $color-dark-haze,
|
|
12
|
-
haze: $color-haze,
|
|
13
|
-
light-haze: $color-light-haze
|
|
14
|
-
);
|
|
15
|
-
$ongray-colors: (
|
|
16
|
-
white: $color-white
|
|
17
|
-
);
|
|
18
|
-
$onwhite-colors: (
|
|
19
|
-
dark-black: $color-dark-black,
|
|
20
|
-
black: $color-black,
|
|
21
|
-
light-black: $color-light-black,
|
|
22
|
-
dark-gray: $color-dark-gray,
|
|
23
|
-
gray: $color-gray,
|
|
24
|
-
light-gray: $color-light-gray,
|
|
25
|
-
lime: $color-lime,
|
|
26
|
-
green: $color-green,
|
|
27
|
-
teal: $color-teal,
|
|
28
|
-
blue: $color-blue,
|
|
29
|
-
indigo: $color-indigo,
|
|
30
|
-
purple: $color-purple,
|
|
31
|
-
pink: $color-pink,
|
|
32
|
-
red: $color-red,
|
|
33
|
-
orange: $color-orange,
|
|
34
|
-
yellow: $color-yellow,
|
|
35
|
-
alert: $color-red,
|
|
36
|
-
error: $color-red,
|
|
37
|
-
warning: $color-yellow,
|
|
38
|
-
success: $color-green
|
|
39
|
-
);
|
|
40
|
-
|
|
41
|
-
/* # Alert
|
|
42
|
-
================================================== */
|
|
43
|
-
.alert {
|
|
44
|
-
background: $color-gray;
|
|
45
|
-
border-bottom: 2px solid darken($color-gray, 5%);
|
|
46
|
-
box-sizing: border-box;
|
|
47
|
-
color: $color-white;
|
|
48
|
-
display: block;
|
|
49
|
-
font-size: 16px;
|
|
50
|
-
line-height: 20px;
|
|
51
|
-
margin: 0;
|
|
52
|
-
padding: 12px 20px 9px 20px;
|
|
53
|
-
width: 100%;
|
|
54
|
-
}
|
|
55
|
-
.alert > a {
|
|
56
|
-
border-bottom: 1px dotted $color-white;
|
|
57
|
-
color: $color-white;
|
|
58
|
-
font-style: italic;
|
|
59
|
-
}
|
|
60
|
-
.alert > i { font-size: 14px; }
|
|
61
|
-
.alert > .alert-close {
|
|
62
|
-
border: 0;
|
|
63
|
-
float: right;
|
|
64
|
-
font-size: 18px;
|
|
65
|
-
line-height: 22px;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
/* # Styles
|
|
69
|
-
================================================== */
|
|
70
|
-
.alert-bordered {
|
|
71
|
-
border: 2px solid darken($color-gray, 5%);
|
|
72
|
-
padding-bottom: 10px;
|
|
73
|
-
padding-top: 10px;
|
|
74
|
-
}
|
|
75
|
-
.alert-fixed {
|
|
76
|
-
left: 0;
|
|
77
|
-
position: fixed;
|
|
78
|
-
right: 0;
|
|
79
|
-
top: 0;
|
|
80
|
-
z-index: 1050;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
/* # Colors
|
|
84
|
-
================================================== */
|
|
85
|
-
@each $name, $color in $onblack-colors {
|
|
86
|
-
.alert-#{$name} {
|
|
87
|
-
background: $color;
|
|
88
|
-
border-color: darken($color, 5%);
|
|
89
|
-
color: $color-black;
|
|
90
|
-
}
|
|
91
|
-
.alert-#{$name} > a {
|
|
92
|
-
border-bottom-color: $color-black;
|
|
93
|
-
color: $color-black;
|
|
94
|
-
}
|
|
95
|
-
.alert-#{$name} .alert-close { color: $color-black; }
|
|
96
|
-
}
|
|
97
|
-
@each $name, $color in $ongray-colors {
|
|
98
|
-
.alert-#{$name} {
|
|
99
|
-
background: $color;
|
|
100
|
-
border-color: darken($color, 5%);
|
|
101
|
-
color: $color-gray;
|
|
102
|
-
}
|
|
103
|
-
.alert-#{$name} > a {
|
|
104
|
-
border-bottom-color: $color-gray;
|
|
105
|
-
color: $color-gray;
|
|
106
|
-
}
|
|
107
|
-
.alert-#{$name} .alert-close { color: $color-gray; }
|
|
108
|
-
}
|
|
109
|
-
@each $name, $color in $onwhite-colors {
|
|
110
|
-
.alert-#{$name} {
|
|
111
|
-
background: $color;
|
|
112
|
-
border-color: darken($color, 5%);
|
|
113
|
-
}
|
|
114
|
-
}
|
|
@@ -1,1370 +0,0 @@
|
|
|
1
|
-
/* Table of Contents
|
|
2
|
-
==================================================
|
|
3
|
-
# Keyframes
|
|
4
|
-
# Animation
|
|
5
|
-
# Names
|
|
6
|
-
# Delays
|
|
7
|
-
# Durations */
|
|
8
|
-
|
|
9
|
-
/* # Keyframes
|
|
10
|
-
================================================== */
|
|
11
|
-
@-webkit-keyframes animation-bounce {
|
|
12
|
-
0%, 20%, 50%, 80%, 100% { @include transform(translateY(0)); }
|
|
13
|
-
40% { @include transform(translateY(-30px)); }
|
|
14
|
-
60% { @include transform(translateY(-15px)); }
|
|
15
|
-
}
|
|
16
|
-
@keyframes animation-bounce {
|
|
17
|
-
0%, 20%, 50%, 80%, 100% { @include transform(translateY(0)); }
|
|
18
|
-
40% { @include transform(translateY(-30px)); }
|
|
19
|
-
60% { @include transform(translateY(-15px)); }
|
|
20
|
-
}
|
|
21
|
-
@-webkit-keyframes animation-flash {
|
|
22
|
-
0%, 50%, 100% { opacity: 1; }
|
|
23
|
-
25%, 75% { opacity: 0; }
|
|
24
|
-
}
|
|
25
|
-
@keyframes animation-flash {
|
|
26
|
-
0%, 50%, 100% { opacity: 1; }
|
|
27
|
-
25%, 75% { opacity: 0; }
|
|
28
|
-
}
|
|
29
|
-
@-webkit-keyframes animation-pulse {
|
|
30
|
-
0% { @include transform(scale(1)); }
|
|
31
|
-
50% { @include transform(scale(1.1)); }
|
|
32
|
-
100% { @include transform(scale(1)); }
|
|
33
|
-
}
|
|
34
|
-
@keyframes animation-pulse {
|
|
35
|
-
0% { @include transform(scale(1)); }
|
|
36
|
-
50% { @include transform(scale(1.1)); }
|
|
37
|
-
100% { @include transform(scale(1)); }
|
|
38
|
-
}
|
|
39
|
-
@-webkit-keyframes animation-shake {
|
|
40
|
-
0%, 100% { @include transform(translateX(0)); }
|
|
41
|
-
10%, 30%, 50%, 70%, 90% { @include transform(translateX(-10px)); }
|
|
42
|
-
20%, 40%, 60%, 80% { @include transform(translateX(10px)); }
|
|
43
|
-
}
|
|
44
|
-
@keyframes animation-shake {
|
|
45
|
-
0%, 100% { @include transform(translateX(0)); }
|
|
46
|
-
10%, 30%, 50%, 70%, 90% { @include transform(translateX(-10px)); }
|
|
47
|
-
20%, 40%, 60%, 80% { @include transform(translateX(10px)); }
|
|
48
|
-
}
|
|
49
|
-
@-webkit-keyframes animation-swing {
|
|
50
|
-
20% { @include transform(rotate(15deg)); }
|
|
51
|
-
40% { @include transform(rotate(-10deg)); }
|
|
52
|
-
60% { @include transform(rotate(5deg)); }
|
|
53
|
-
80% { @include transform(rotate(-5deg)); }
|
|
54
|
-
100% { @include transform(rotate(0)); }
|
|
55
|
-
}
|
|
56
|
-
@keyframes animation-swing {
|
|
57
|
-
20% { @include transform(rotate(15deg)); }
|
|
58
|
-
40% { @include transform(rotate(-10deg)); }
|
|
59
|
-
60% { @include transform(rotate(5deg)); }
|
|
60
|
-
80% { @include transform(rotate(-5deg)); }
|
|
61
|
-
100% { @include transform(rotate(0)); }
|
|
62
|
-
}
|
|
63
|
-
@-webkit-keyframes animation-tada {
|
|
64
|
-
0% { @include transform(scale(1)); }
|
|
65
|
-
10%, 20% { @include transform(scale(0.9) rotate(-3deg)); }
|
|
66
|
-
30%, 50%, 70%, 90% { @include transform(scale(1.1) rotate(3deg)); }
|
|
67
|
-
40%, 60%, 80% { @include transform(scale(1.1) rotate(-3deg)); }
|
|
68
|
-
100% { @include transform(scale(1) rotate(0)); }
|
|
69
|
-
}
|
|
70
|
-
@keyframes animation-tada {
|
|
71
|
-
0% { @include transform(scale(1)); }
|
|
72
|
-
10%, 20% { @include transform(scale(0.9) rotate(-3deg)); }
|
|
73
|
-
30%, 50%, 70%, 90% { @include transform(scale(1.1) rotate(3deg)); }
|
|
74
|
-
40%, 60%, 80% { @include transform(scale(1.1) rotate(-3deg)); }
|
|
75
|
-
100% { @include transform(scale(1) rotate(0)); }
|
|
76
|
-
}
|
|
77
|
-
@-webkit-keyframes animation-wobble {
|
|
78
|
-
0% { @include transform(translateX(0)); }
|
|
79
|
-
15% { @include transform(translateX(-25%) rotate(-5deg)); }
|
|
80
|
-
30% { @include transform(translateX(20%) rotate(3deg)); }
|
|
81
|
-
45% { @include transform(translateX(-15%) rotate(-3deg)); }
|
|
82
|
-
60% { @include transform(translateX(10%) rotate(2deg)); }
|
|
83
|
-
75% { @include transform(translateX(-5%) rotate(-1deg)); }
|
|
84
|
-
100% { @include transform(translateX(0)); }
|
|
85
|
-
}
|
|
86
|
-
@keyframes animation-wobble {
|
|
87
|
-
0% { @include transform(translateX(0)); }
|
|
88
|
-
15% { @include transform(translateX(-25%) rotate(-5deg)); }
|
|
89
|
-
30% { @include transform(translateX(20%) rotate(3deg)); }
|
|
90
|
-
45% { @include transform(translateX(-15%) rotate(-3deg)); }
|
|
91
|
-
60% { @include transform(translateX(10%) rotate(2deg)); }
|
|
92
|
-
75% { @include transform(translateX(-5%) rotate(-1deg)); }
|
|
93
|
-
100% { @include transform(translateX(0)); }
|
|
94
|
-
}
|
|
95
|
-
@-webkit-keyframes animation-bounce-in {
|
|
96
|
-
0% {
|
|
97
|
-
opacity: 0;
|
|
98
|
-
@include transform(scale(0.3));
|
|
99
|
-
}
|
|
100
|
-
50% {
|
|
101
|
-
opacity: 1;
|
|
102
|
-
@include transform(scale(1.05));
|
|
103
|
-
}
|
|
104
|
-
70% { @include transform(scale(0.9)); }
|
|
105
|
-
100% { @include transform(scale(1)); }
|
|
106
|
-
}
|
|
107
|
-
@keyframes animation-bounce-in {
|
|
108
|
-
0% {
|
|
109
|
-
opacity: 0;
|
|
110
|
-
@include transform(scale(0.3));
|
|
111
|
-
}
|
|
112
|
-
50% {
|
|
113
|
-
opacity: 1;
|
|
114
|
-
@include transform(scale(1.05));
|
|
115
|
-
}
|
|
116
|
-
70% { @include transform(scale(0.9)); }
|
|
117
|
-
100% { @include transform(scale(1)); }
|
|
118
|
-
}
|
|
119
|
-
@-webkit-keyframes animation-bounce-in-down {
|
|
120
|
-
0% {
|
|
121
|
-
opacity: 0;
|
|
122
|
-
@include transform(translateY(-2000px));
|
|
123
|
-
}
|
|
124
|
-
60% {
|
|
125
|
-
opacity: 1;
|
|
126
|
-
@include transform(translateY(30px));
|
|
127
|
-
}
|
|
128
|
-
80% { @include transform(translateY(-10px)); }
|
|
129
|
-
100% { @include transform(translateY(0)); }
|
|
130
|
-
}
|
|
131
|
-
@keyframes animation-bounce-in-down {
|
|
132
|
-
0% {
|
|
133
|
-
opacity: 0;
|
|
134
|
-
@include transform(translateY(-2000px));
|
|
135
|
-
}
|
|
136
|
-
60% {
|
|
137
|
-
opacity: 1;
|
|
138
|
-
@include transform(translateY(30px));
|
|
139
|
-
}
|
|
140
|
-
80% { @include transform(translateY(-10px)); }
|
|
141
|
-
100% { @include transform(translateY(0)); }
|
|
142
|
-
}
|
|
143
|
-
@-webkit-keyframes animation-bounce-in-left {
|
|
144
|
-
0% {
|
|
145
|
-
opacity: 0;
|
|
146
|
-
@include transform(translateX(-2000px));
|
|
147
|
-
}
|
|
148
|
-
60% {
|
|
149
|
-
opacity: 1;
|
|
150
|
-
@include transform(translateX(30px));
|
|
151
|
-
}
|
|
152
|
-
80% { @include transform(translateX(-10px)); }
|
|
153
|
-
100% { @include transform(translateX(0)); }
|
|
154
|
-
}
|
|
155
|
-
@keyframes animation-bounce-in-left {
|
|
156
|
-
0% {
|
|
157
|
-
opacity: 0;
|
|
158
|
-
@include transform(translateX(-2000px));
|
|
159
|
-
}
|
|
160
|
-
60% {
|
|
161
|
-
opacity: 1;
|
|
162
|
-
@include transform(translateX(30px));
|
|
163
|
-
}
|
|
164
|
-
80% { @include transform(translateX(-10px)); }
|
|
165
|
-
100% { @include transform(translateX(0)); }
|
|
166
|
-
}
|
|
167
|
-
@-webkit-keyframes animation-bounce-in-right {
|
|
168
|
-
0% {
|
|
169
|
-
opacity: 0;
|
|
170
|
-
@include transform(translateX(2000px));
|
|
171
|
-
}
|
|
172
|
-
60% {
|
|
173
|
-
opacity: 1;
|
|
174
|
-
@include transform(translateX(-30px));
|
|
175
|
-
}
|
|
176
|
-
80% { @include transform(translateX(10px)); }
|
|
177
|
-
100% { @include transform(translateX(0)); }
|
|
178
|
-
}
|
|
179
|
-
@keyframes animation-bounce-in-right {
|
|
180
|
-
0% {
|
|
181
|
-
opacity: 0;
|
|
182
|
-
@include transform(translateX(2000px));
|
|
183
|
-
}
|
|
184
|
-
60% {
|
|
185
|
-
opacity: 1;
|
|
186
|
-
@include transform(translateX(-30px));
|
|
187
|
-
}
|
|
188
|
-
80% { @include transform(translateX(10px)); }
|
|
189
|
-
100% { @include transform(translateX(0)); }
|
|
190
|
-
}
|
|
191
|
-
@-webkit-keyframes animation-bounce-in-up {
|
|
192
|
-
0% {
|
|
193
|
-
opacity: 0;
|
|
194
|
-
@include transform(translateY(2000px));
|
|
195
|
-
}
|
|
196
|
-
60% {
|
|
197
|
-
opacity: 1;
|
|
198
|
-
@include transform(translateY(-30px));
|
|
199
|
-
}
|
|
200
|
-
80% { @include transform(translateY(10px)); }
|
|
201
|
-
100% { @include transform(translateY(0)); }
|
|
202
|
-
}
|
|
203
|
-
@keyframes animation-bounce-in-up {
|
|
204
|
-
0% {
|
|
205
|
-
opacity: 0;
|
|
206
|
-
@include transform(translateY(2000px));
|
|
207
|
-
}
|
|
208
|
-
60% {
|
|
209
|
-
opacity: 1;
|
|
210
|
-
@include transform(translateY(-30px));
|
|
211
|
-
}
|
|
212
|
-
80% { @include transform(translateY(10px)); }
|
|
213
|
-
100% { @include transform(translateY(0)); }
|
|
214
|
-
}
|
|
215
|
-
@-webkit-keyframes animation-bounce-out {
|
|
216
|
-
0% { @include transform(scale(1)); }
|
|
217
|
-
25% { @include transform(scale(0.95)); }
|
|
218
|
-
50% {
|
|
219
|
-
opacity: 1;
|
|
220
|
-
@include transform(scale(1.1));
|
|
221
|
-
}
|
|
222
|
-
100% {
|
|
223
|
-
opacity: 0;
|
|
224
|
-
@include transform(scale(0.3));
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
@keyframes animation-bounce-out {
|
|
228
|
-
0% { @include transform(scale(1)); }
|
|
229
|
-
25% { @include transform(scale(0.95)); }
|
|
230
|
-
50% {
|
|
231
|
-
opacity: 1;
|
|
232
|
-
@include transform(scale(1.1));
|
|
233
|
-
}
|
|
234
|
-
100% {
|
|
235
|
-
opacity: 0;
|
|
236
|
-
@include transform(scale(0.3));
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
@-webkit-keyframes animation-bounce-out-down {
|
|
240
|
-
0% { @include transform(translateY(0)); }
|
|
241
|
-
20% {
|
|
242
|
-
opacity: 1;
|
|
243
|
-
@include transform(translateY(-20px));
|
|
244
|
-
}
|
|
245
|
-
100% {
|
|
246
|
-
opacity: 0;
|
|
247
|
-
@include transform(translateY(2000px));
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
@keyframes animation-bounce-out-down {
|
|
251
|
-
0% { @include transform(translateY(0)); }
|
|
252
|
-
20% {
|
|
253
|
-
opacity: 1;
|
|
254
|
-
@include transform(translateY(-20px));
|
|
255
|
-
}
|
|
256
|
-
100% {
|
|
257
|
-
opacity: 0;
|
|
258
|
-
@include transform(translateY(2000px));
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
@-webkit-keyframes animation-bounce-out-left {
|
|
262
|
-
0% { @include transform(translateX(0)); }
|
|
263
|
-
20% {
|
|
264
|
-
opacity: 1;
|
|
265
|
-
@include transform(translateX(20px));
|
|
266
|
-
}
|
|
267
|
-
100% {
|
|
268
|
-
opacity: 0;
|
|
269
|
-
@include transform(translateX(-2000px));
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
@keyframes animation-bounce-out-left {
|
|
273
|
-
0% { @include transform(translateX(0)); }
|
|
274
|
-
20% {
|
|
275
|
-
opacity: 1;
|
|
276
|
-
@include transform(translateX(20px));
|
|
277
|
-
}
|
|
278
|
-
100% {
|
|
279
|
-
opacity: 0;
|
|
280
|
-
@include transform(translateX(-2000px));
|
|
281
|
-
}
|
|
282
|
-
}
|
|
283
|
-
@-webkit-keyframes animation-bounce-out-right {
|
|
284
|
-
0% { @include transform(translateX(0)); }
|
|
285
|
-
20% {
|
|
286
|
-
opacity: 1;
|
|
287
|
-
@include transform(translateX(-20px));
|
|
288
|
-
}
|
|
289
|
-
100% {
|
|
290
|
-
opacity: 0;
|
|
291
|
-
@include transform(translateX(2000px));
|
|
292
|
-
}
|
|
293
|
-
}
|
|
294
|
-
@keyframes animation-bounce-out-right {
|
|
295
|
-
0% { @include transform(translateX(0)); }
|
|
296
|
-
20% {
|
|
297
|
-
opacity: 1;
|
|
298
|
-
@include transform(translateX(-20px));
|
|
299
|
-
}
|
|
300
|
-
100% {
|
|
301
|
-
opacity: 0;
|
|
302
|
-
@include transform(translateX(2000px));
|
|
303
|
-
}
|
|
304
|
-
}
|
|
305
|
-
@-webkit-keyframes animation-bounce-out-up {
|
|
306
|
-
0% { @include transform(translateY(0)); }
|
|
307
|
-
20% {
|
|
308
|
-
opacity: 1;
|
|
309
|
-
@include transform(translateY(20px));
|
|
310
|
-
}
|
|
311
|
-
100% {
|
|
312
|
-
opacity: 0;
|
|
313
|
-
@include transform(translateY(-2000px));
|
|
314
|
-
}
|
|
315
|
-
}
|
|
316
|
-
@keyframes animation-bounce-out-up {
|
|
317
|
-
0% { @include transform(translateY(0)); }
|
|
318
|
-
20% {
|
|
319
|
-
opacity: 1;
|
|
320
|
-
@include transform(translateY(20px));
|
|
321
|
-
}
|
|
322
|
-
100% {
|
|
323
|
-
opacity: 0;
|
|
324
|
-
@include transform(translateY(-2000px));
|
|
325
|
-
}
|
|
326
|
-
}
|
|
327
|
-
@-webkit-keyframes animation-fade-in {
|
|
328
|
-
0% { opacity: 0; }
|
|
329
|
-
100% { opacity: 1; }
|
|
330
|
-
}
|
|
331
|
-
@keyframes animation-fade-in {
|
|
332
|
-
0% { opacity: 0; }
|
|
333
|
-
100% { opacity: 1; }
|
|
334
|
-
}
|
|
335
|
-
@-webkit-keyframes animation-fade-in-down {
|
|
336
|
-
0% {
|
|
337
|
-
opacity: 0;
|
|
338
|
-
@include transform(translateY(-20px));
|
|
339
|
-
}
|
|
340
|
-
100% {
|
|
341
|
-
opacity: 1;
|
|
342
|
-
@include transform(translateY(0));
|
|
343
|
-
}
|
|
344
|
-
}
|
|
345
|
-
@keyframes animation-fade-in-down {
|
|
346
|
-
0% {
|
|
347
|
-
opacity: 0;
|
|
348
|
-
@include transform(translateY(-20px));
|
|
349
|
-
}
|
|
350
|
-
100% {
|
|
351
|
-
opacity: 1;
|
|
352
|
-
@include transform(translateY(0));
|
|
353
|
-
}
|
|
354
|
-
}
|
|
355
|
-
@-webkit-keyframes animation-fade-in-down-big {
|
|
356
|
-
0% {
|
|
357
|
-
opacity: 0;
|
|
358
|
-
@include transform(translateY(-2000px));
|
|
359
|
-
}
|
|
360
|
-
100% {
|
|
361
|
-
opacity: 1;
|
|
362
|
-
@include transform(translateY(0));
|
|
363
|
-
}
|
|
364
|
-
}
|
|
365
|
-
@keyframes animation-fade-in-down-big {
|
|
366
|
-
0% {
|
|
367
|
-
opacity: 0;
|
|
368
|
-
@include transform(translateY(-2000px));
|
|
369
|
-
}
|
|
370
|
-
100% {
|
|
371
|
-
opacity: 1;
|
|
372
|
-
@include transform(translateY(0));
|
|
373
|
-
}
|
|
374
|
-
}
|
|
375
|
-
@-webkit-keyframes animation-fade-in-left {
|
|
376
|
-
0% {
|
|
377
|
-
opacity: 0;
|
|
378
|
-
@include transform(translateX(-20px));
|
|
379
|
-
}
|
|
380
|
-
100% {
|
|
381
|
-
opacity: 1;
|
|
382
|
-
@include transform(translateX(0));
|
|
383
|
-
}
|
|
384
|
-
}
|
|
385
|
-
@keyframes animation-fade-in-left {
|
|
386
|
-
0% {
|
|
387
|
-
opacity: 0;
|
|
388
|
-
@include transform(translateX(-20px));
|
|
389
|
-
}
|
|
390
|
-
100% {
|
|
391
|
-
opacity: 1;
|
|
392
|
-
@include transform(translateX(0));
|
|
393
|
-
}
|
|
394
|
-
}
|
|
395
|
-
@-webkit-keyframes animation-fade-in-left-big {
|
|
396
|
-
0% {
|
|
397
|
-
opacity: 0;
|
|
398
|
-
@include transform(translateX(-2000px));
|
|
399
|
-
}
|
|
400
|
-
100% {
|
|
401
|
-
opacity: 1;
|
|
402
|
-
@include transform(translateX(0));
|
|
403
|
-
}
|
|
404
|
-
}
|
|
405
|
-
@keyframes animation-fade-in-left-big {
|
|
406
|
-
0% {
|
|
407
|
-
opacity: 0;
|
|
408
|
-
@include transform(translateX(-2000px));
|
|
409
|
-
}
|
|
410
|
-
100% {
|
|
411
|
-
opacity: 1;
|
|
412
|
-
@include transform(translateX(0));
|
|
413
|
-
}
|
|
414
|
-
}
|
|
415
|
-
@-webkit-keyframes animation-fade-in-right {
|
|
416
|
-
0% {
|
|
417
|
-
opacity: 0;
|
|
418
|
-
@include transform(translateX(20px));
|
|
419
|
-
}
|
|
420
|
-
100% {
|
|
421
|
-
opacity: 1;
|
|
422
|
-
@include transform(translateX(0));
|
|
423
|
-
}
|
|
424
|
-
}
|
|
425
|
-
@keyframes animation-fade-in-right {
|
|
426
|
-
0% {
|
|
427
|
-
opacity: 0;
|
|
428
|
-
@include transform(translateX(20px));
|
|
429
|
-
}
|
|
430
|
-
100% {
|
|
431
|
-
opacity: 1;
|
|
432
|
-
@include transform(translateX(0));
|
|
433
|
-
}
|
|
434
|
-
}
|
|
435
|
-
@-webkit-keyframes animation-fade-in-right-big {
|
|
436
|
-
0% {
|
|
437
|
-
opacity: 0;
|
|
438
|
-
@include transform(translateX(2000px));
|
|
439
|
-
}
|
|
440
|
-
100% {
|
|
441
|
-
opacity: 1;
|
|
442
|
-
@include transform(translateX(0));
|
|
443
|
-
}
|
|
444
|
-
}
|
|
445
|
-
@keyframes animation-fade-in-right-big {
|
|
446
|
-
0% {
|
|
447
|
-
opacity: 0;
|
|
448
|
-
@include transform(translateX(2000px));
|
|
449
|
-
}
|
|
450
|
-
100% {
|
|
451
|
-
opacity: 1;
|
|
452
|
-
@include transform(translateX(0));
|
|
453
|
-
}
|
|
454
|
-
}
|
|
455
|
-
@-webkit-keyframes animation-fade-in-up {
|
|
456
|
-
0% {
|
|
457
|
-
opacity: 0;
|
|
458
|
-
@include transform(translateY(20px));
|
|
459
|
-
}
|
|
460
|
-
100% {
|
|
461
|
-
opacity: 1;
|
|
462
|
-
@include transform(translateY(0));
|
|
463
|
-
}
|
|
464
|
-
}
|
|
465
|
-
@keyframes animation-fade-in-up {
|
|
466
|
-
0% {
|
|
467
|
-
opacity: 0;
|
|
468
|
-
@include transform(translateY(20px));
|
|
469
|
-
}
|
|
470
|
-
100% {
|
|
471
|
-
opacity: 1;
|
|
472
|
-
@include transform(translateY(0));
|
|
473
|
-
}
|
|
474
|
-
}
|
|
475
|
-
@-webkit-keyframes animation-fade-in-up-big {
|
|
476
|
-
0% {
|
|
477
|
-
opacity: 0;
|
|
478
|
-
@include transform(translateY(2000px));
|
|
479
|
-
}
|
|
480
|
-
100% {
|
|
481
|
-
opacity: 1;
|
|
482
|
-
@include transform(translateY(0));
|
|
483
|
-
}
|
|
484
|
-
}
|
|
485
|
-
@keyframes animation-fade-in-up-big {
|
|
486
|
-
0% {
|
|
487
|
-
opacity: 0;
|
|
488
|
-
@include transform(translateY(2000px));
|
|
489
|
-
}
|
|
490
|
-
100% {
|
|
491
|
-
opacity: 1;
|
|
492
|
-
@include transform(translateY(0));
|
|
493
|
-
}
|
|
494
|
-
}
|
|
495
|
-
@-webkit-keyframes animation-fade-out {
|
|
496
|
-
0% { opacity: 1; }
|
|
497
|
-
100% { opacity: 0; }
|
|
498
|
-
}
|
|
499
|
-
@keyframes animation-fade-out {
|
|
500
|
-
0% { opacity: 1; }
|
|
501
|
-
100% { opacity: 0; }
|
|
502
|
-
}
|
|
503
|
-
@-webkit-keyframes animation-fade-out-down {
|
|
504
|
-
0% {
|
|
505
|
-
opacity: 1;
|
|
506
|
-
@include transform(translateY(0));
|
|
507
|
-
}
|
|
508
|
-
100% {
|
|
509
|
-
opacity: 0;
|
|
510
|
-
@include transform(translateY(20px));
|
|
511
|
-
}
|
|
512
|
-
}
|
|
513
|
-
@keyframes animation-fade-out-down {
|
|
514
|
-
0% {
|
|
515
|
-
opacity: 1;
|
|
516
|
-
@include transform(translateY(0));
|
|
517
|
-
}
|
|
518
|
-
100% {
|
|
519
|
-
opacity: 0;
|
|
520
|
-
@include transform(translateY(20px));
|
|
521
|
-
}
|
|
522
|
-
}
|
|
523
|
-
@-webkit-keyframes animation-fade-out-down-big {
|
|
524
|
-
0% {
|
|
525
|
-
opacity: 1;
|
|
526
|
-
@include transform(translateY(0));
|
|
527
|
-
}
|
|
528
|
-
100% {
|
|
529
|
-
opacity: 0;
|
|
530
|
-
@include transform(translateY(2000px));
|
|
531
|
-
}
|
|
532
|
-
}
|
|
533
|
-
@keyframes animation-fade-out-down-big {
|
|
534
|
-
0% {
|
|
535
|
-
opacity: 1;
|
|
536
|
-
@include transform(translateY(0));
|
|
537
|
-
}
|
|
538
|
-
100% {
|
|
539
|
-
opacity: 0;
|
|
540
|
-
@include transform(translateY(2000px));
|
|
541
|
-
}
|
|
542
|
-
}
|
|
543
|
-
@-webkit-keyframes animation-fade-out-left {
|
|
544
|
-
0% {
|
|
545
|
-
opacity: 1;
|
|
546
|
-
@include transform(translateX(0));
|
|
547
|
-
}
|
|
548
|
-
100% {
|
|
549
|
-
opacity: 0;
|
|
550
|
-
@include transform(translateX(-20px));
|
|
551
|
-
}
|
|
552
|
-
}
|
|
553
|
-
@keyframes animation-fade-out-left {
|
|
554
|
-
0% {
|
|
555
|
-
opacity: 1;
|
|
556
|
-
@include transform(translateX(0));
|
|
557
|
-
}
|
|
558
|
-
100% {
|
|
559
|
-
opacity: 0;
|
|
560
|
-
@include transform(translateX(-20px));
|
|
561
|
-
}
|
|
562
|
-
}
|
|
563
|
-
@-webkit-keyframes animation-fade-out-left-big {
|
|
564
|
-
0% {
|
|
565
|
-
opacity: 1;
|
|
566
|
-
@include transform(translateX(0));
|
|
567
|
-
}
|
|
568
|
-
100% {
|
|
569
|
-
opacity: 0;
|
|
570
|
-
@include transform(translateX(-2000px));
|
|
571
|
-
}
|
|
572
|
-
}
|
|
573
|
-
@keyframes animation-fade-out-left-big {
|
|
574
|
-
0% {
|
|
575
|
-
opacity: 1;
|
|
576
|
-
@include transform(translateX(0));
|
|
577
|
-
}
|
|
578
|
-
100% {
|
|
579
|
-
opacity: 0;
|
|
580
|
-
@include transform(translateX(-2000px));
|
|
581
|
-
}
|
|
582
|
-
}
|
|
583
|
-
@-webkit-keyframes animation-fade-out-right {
|
|
584
|
-
0% {
|
|
585
|
-
opacity: 1;
|
|
586
|
-
@include transform(translateX(0));
|
|
587
|
-
}
|
|
588
|
-
100% {
|
|
589
|
-
opacity: 0;
|
|
590
|
-
@include transform(translateX(20px));
|
|
591
|
-
}
|
|
592
|
-
}
|
|
593
|
-
@keyframes animation-fade-out-right {
|
|
594
|
-
0% {
|
|
595
|
-
opacity: 1;
|
|
596
|
-
@include transform(translateX(0));
|
|
597
|
-
}
|
|
598
|
-
100% {
|
|
599
|
-
opacity: 0;
|
|
600
|
-
@include transform(translateX(20px));
|
|
601
|
-
}
|
|
602
|
-
}
|
|
603
|
-
@-webkit-keyframes animation-fade-out-right-big {
|
|
604
|
-
0% {
|
|
605
|
-
opacity: 1;
|
|
606
|
-
@include transform(translateX(0));
|
|
607
|
-
}
|
|
608
|
-
100% {
|
|
609
|
-
opacity: 0;
|
|
610
|
-
@include transform(translateX(2000px));
|
|
611
|
-
}
|
|
612
|
-
}
|
|
613
|
-
@keyframes animation-fade-out-right-big {
|
|
614
|
-
0% {
|
|
615
|
-
opacity: 1;
|
|
616
|
-
@include transform(translateX(0));
|
|
617
|
-
}
|
|
618
|
-
100% {
|
|
619
|
-
opacity: 0;
|
|
620
|
-
@include transform(translateX(2000px));
|
|
621
|
-
}
|
|
622
|
-
}
|
|
623
|
-
@-webkit-keyframes animation-fade-out-up {
|
|
624
|
-
0% {
|
|
625
|
-
opacity: 1;
|
|
626
|
-
@include transform(translateY(0));
|
|
627
|
-
}
|
|
628
|
-
100% {
|
|
629
|
-
opacity: 0;
|
|
630
|
-
@include transform(translateY(-20px));
|
|
631
|
-
}
|
|
632
|
-
}
|
|
633
|
-
@keyframes animation-fade-out-up {
|
|
634
|
-
0% {
|
|
635
|
-
opacity: 1;
|
|
636
|
-
@include transform(translateY(0));
|
|
637
|
-
}
|
|
638
|
-
100% {
|
|
639
|
-
opacity: 0;
|
|
640
|
-
@include transform(translateY(-20px));
|
|
641
|
-
}
|
|
642
|
-
}
|
|
643
|
-
@-webkit-keyframes animation-fade-out-up-big {
|
|
644
|
-
0% {
|
|
645
|
-
opacity: 1;
|
|
646
|
-
@include transform(translateY(0));
|
|
647
|
-
}
|
|
648
|
-
100% {
|
|
649
|
-
opacity: 0;
|
|
650
|
-
@include transform(translateY(-2000px));
|
|
651
|
-
}
|
|
652
|
-
}
|
|
653
|
-
@keyframes animation-fade-out-up-big {
|
|
654
|
-
0% {
|
|
655
|
-
opacity: 1;
|
|
656
|
-
@include transform(translateY(0));
|
|
657
|
-
}
|
|
658
|
-
100% {
|
|
659
|
-
opacity: 0;
|
|
660
|
-
@include transform(translateY(-2000px));
|
|
661
|
-
}
|
|
662
|
-
}
|
|
663
|
-
@-webkit-keyframes animation-flip {
|
|
664
|
-
0% {
|
|
665
|
-
@include animation-timing-function(ease-out);
|
|
666
|
-
@include transform(perspective(400px) translateZ(0) rotateY(0) scale(1));
|
|
667
|
-
}
|
|
668
|
-
40% {
|
|
669
|
-
@include animation-timing-function(ease-out);
|
|
670
|
-
@include transform(perspective(400px) translateZ(150px) rotateY(170deg) scale(1));
|
|
671
|
-
}
|
|
672
|
-
50% {
|
|
673
|
-
@include animation-timing-function(ease-in);
|
|
674
|
-
@include transform(perspective(400px) translateZ(150px) rotateY(190deg) scale(1));
|
|
675
|
-
}
|
|
676
|
-
80% {
|
|
677
|
-
@include animation-timing-function(ease-in);
|
|
678
|
-
@include transform(perspective(400px) translateZ(0) rotateY(360deg) scale(0.95));
|
|
679
|
-
}
|
|
680
|
-
100% {
|
|
681
|
-
@include animation-timing-function(ease-in);
|
|
682
|
-
@include transform(perspective(400px) translateZ(0) rotateY(360deg) scale(1));
|
|
683
|
-
}
|
|
684
|
-
}
|
|
685
|
-
@keyframes animation-flip {
|
|
686
|
-
0% {
|
|
687
|
-
@include animation-timing-function(ease-out);
|
|
688
|
-
@include transform(perspective(400px) translateZ(0) rotateY(0) scale(1));
|
|
689
|
-
}
|
|
690
|
-
40% {
|
|
691
|
-
@include animation-timing-function(ease-out);
|
|
692
|
-
@include transform(perspective(400px) translateZ(150px) rotateY(170deg) scale(1));
|
|
693
|
-
}
|
|
694
|
-
50% {
|
|
695
|
-
@include animation-timing-function(ease-in);
|
|
696
|
-
@include transform(perspective(400px) translateZ(150px) rotateY(190deg) scale(1));
|
|
697
|
-
}
|
|
698
|
-
80% {
|
|
699
|
-
@include animation-timing-function(ease-in);
|
|
700
|
-
@include transform(perspective(400px) translateZ(0) rotateY(360deg) scale(0.95));
|
|
701
|
-
}
|
|
702
|
-
100% {
|
|
703
|
-
@include animation-timing-function(ease-in);
|
|
704
|
-
@include transform(perspective(400px) translateZ(0) rotateY(360deg) scale(1));
|
|
705
|
-
}
|
|
706
|
-
}
|
|
707
|
-
@-webkit-keyframes animation-flip-in-x {
|
|
708
|
-
0% {
|
|
709
|
-
opacity: 0;
|
|
710
|
-
@include transform(perspective(400px) rotateX(90deg));
|
|
711
|
-
}
|
|
712
|
-
40% { @include transform(perspective(400px) rotateX(-10deg)); }
|
|
713
|
-
70% { @include transform(perspective(400px) rotateX(10deg)); }
|
|
714
|
-
100% {
|
|
715
|
-
opacity: 1;
|
|
716
|
-
@include transform(perspective(400px) rotateX(0));
|
|
717
|
-
}
|
|
718
|
-
}
|
|
719
|
-
@keyframes animation-flip-in-x {
|
|
720
|
-
0% {
|
|
721
|
-
opacity: 0;
|
|
722
|
-
@include transform(perspective(400px) rotateX(90deg));
|
|
723
|
-
}
|
|
724
|
-
40% { @include transform(perspective(400px) rotateX(-10deg)); }
|
|
725
|
-
70% { @include transform(perspective(400px) rotateX(10deg)); }
|
|
726
|
-
100% {
|
|
727
|
-
opacity: 1;
|
|
728
|
-
@include transform(perspective(400px) rotateX(0));
|
|
729
|
-
}
|
|
730
|
-
}
|
|
731
|
-
@-webkit-keyframes animation-flip-in-y {
|
|
732
|
-
0% {
|
|
733
|
-
opacity: 0;
|
|
734
|
-
@include transform(perspective(400px) rotateY(90deg));
|
|
735
|
-
}
|
|
736
|
-
40% { @include transform(perspective(400px) rotateY(-10deg)); }
|
|
737
|
-
70% { @include transform(perspective(400px) rotateY(10deg)); }
|
|
738
|
-
100% {
|
|
739
|
-
opacity: 1;
|
|
740
|
-
@include transform(perspective(400px) rotateY(0));
|
|
741
|
-
}
|
|
742
|
-
}
|
|
743
|
-
@keyframes animation-flip-in-y {
|
|
744
|
-
0% {
|
|
745
|
-
opacity: 0;
|
|
746
|
-
@include transform(perspective(400px) rotateY(90deg));
|
|
747
|
-
}
|
|
748
|
-
40% { @include transform(perspective(400px) rotateY(-10deg)); }
|
|
749
|
-
70% { @include transform(perspective(400px) rotateY(10deg)); }
|
|
750
|
-
100% {
|
|
751
|
-
opacity: 1;
|
|
752
|
-
@include transform(perspective(400px) rotateY(0));
|
|
753
|
-
}
|
|
754
|
-
}
|
|
755
|
-
@-webkit-keyframes animation-flip-out-x {
|
|
756
|
-
0% {
|
|
757
|
-
opacity: 1;
|
|
758
|
-
@include transform(perspective(400px) rotateX(0));
|
|
759
|
-
}
|
|
760
|
-
100% {
|
|
761
|
-
opacity: 0;
|
|
762
|
-
@include transform(perspective(400px) rotateX(90deg));
|
|
763
|
-
}
|
|
764
|
-
}
|
|
765
|
-
@keyframes animation-flip-out-x {
|
|
766
|
-
0% {
|
|
767
|
-
opacity: 1;
|
|
768
|
-
@include transform(perspective(400px) rotateX(0));
|
|
769
|
-
}
|
|
770
|
-
100% {
|
|
771
|
-
opacity: 0;
|
|
772
|
-
@include transform(perspective(400px) rotateX(90deg));
|
|
773
|
-
}
|
|
774
|
-
}
|
|
775
|
-
@-webkit-keyframes animation-flip-out-y {
|
|
776
|
-
0% {
|
|
777
|
-
opacity: 1;
|
|
778
|
-
@include transform(perspective(400px) rotateY(0));
|
|
779
|
-
}
|
|
780
|
-
100% {
|
|
781
|
-
opacity: 0;
|
|
782
|
-
@include transform(perspective(400px) rotateY(90deg));
|
|
783
|
-
}
|
|
784
|
-
}
|
|
785
|
-
@keyframes animation-flip-out-y {
|
|
786
|
-
0% {
|
|
787
|
-
opacity: 1;
|
|
788
|
-
@include transform(perspective(400px) rotateY(0));
|
|
789
|
-
}
|
|
790
|
-
100% {
|
|
791
|
-
opacity: 0;
|
|
792
|
-
@include transform(perspective(400px) rotateY(90deg));
|
|
793
|
-
}
|
|
794
|
-
}
|
|
795
|
-
@-webkit-keyframes animation-light-speed-in {
|
|
796
|
-
0% {
|
|
797
|
-
opacity: 0;
|
|
798
|
-
@include transform(translateX(100%) skewX(-30deg));
|
|
799
|
-
}
|
|
800
|
-
60% {
|
|
801
|
-
opacity: 1;
|
|
802
|
-
@include transform(translateX(-20%) skewX(30deg));
|
|
803
|
-
}
|
|
804
|
-
80% {
|
|
805
|
-
opacity: 1;
|
|
806
|
-
@include transform(translateX(0) skewX(-15deg));
|
|
807
|
-
}
|
|
808
|
-
100% {
|
|
809
|
-
opacity: 1;
|
|
810
|
-
@include transform(translateX(0) skewX(0));
|
|
811
|
-
}
|
|
812
|
-
}
|
|
813
|
-
@keyframes animation-light-speed-in {
|
|
814
|
-
0% {
|
|
815
|
-
opacity: 0;
|
|
816
|
-
@include transform(translateX(100%) skewX(-30deg));
|
|
817
|
-
}
|
|
818
|
-
60% {
|
|
819
|
-
opacity: 1;
|
|
820
|
-
@include transform(translateX(-20%) skewX(30deg));
|
|
821
|
-
}
|
|
822
|
-
80% {
|
|
823
|
-
opacity: 1;
|
|
824
|
-
@include transform(translateX(0) skewX(-15deg));
|
|
825
|
-
}
|
|
826
|
-
100% {
|
|
827
|
-
opacity: 1;
|
|
828
|
-
@include transform(translateX(0) skewX(0));
|
|
829
|
-
}
|
|
830
|
-
}
|
|
831
|
-
@-webkit-keyframes animation-light-speed-out {
|
|
832
|
-
0% {
|
|
833
|
-
opacity: 1;
|
|
834
|
-
@include transform(translateX(0) skewX(0));
|
|
835
|
-
}
|
|
836
|
-
100% {
|
|
837
|
-
opacity: 0;
|
|
838
|
-
@include transform(translateX(100%) skewX(-30deg));
|
|
839
|
-
}
|
|
840
|
-
}
|
|
841
|
-
@keyframes animation-light-speed-out {
|
|
842
|
-
0% {
|
|
843
|
-
opacity: 1;
|
|
844
|
-
@include transform(translateX(0) skewX(0));
|
|
845
|
-
}
|
|
846
|
-
100% {
|
|
847
|
-
opacity: 0;
|
|
848
|
-
@include transform(translateX(100%) skewX(-30deg));
|
|
849
|
-
}
|
|
850
|
-
}
|
|
851
|
-
@-webkit-keyframes animation-rotate-in {
|
|
852
|
-
0% {
|
|
853
|
-
opacity: 0;
|
|
854
|
-
@include transform(rotate(-200deg));
|
|
855
|
-
@include transform-origin(center center);
|
|
856
|
-
}
|
|
857
|
-
100% {
|
|
858
|
-
opacity: 1;
|
|
859
|
-
@include transform(rotate(0));
|
|
860
|
-
@include transform-origin(center center);
|
|
861
|
-
}
|
|
862
|
-
}
|
|
863
|
-
@keyframes animation-rotate-in {
|
|
864
|
-
0% {
|
|
865
|
-
opacity: 0;
|
|
866
|
-
@include transform(rotate(-200deg));
|
|
867
|
-
@include transform-origin(center center);
|
|
868
|
-
}
|
|
869
|
-
100% {
|
|
870
|
-
opacity: 1;
|
|
871
|
-
@include transform(rotate(0));
|
|
872
|
-
@include transform-origin(center center);
|
|
873
|
-
}
|
|
874
|
-
}
|
|
875
|
-
@-webkit-keyframes animation-rotate-in-down-left {
|
|
876
|
-
0% {
|
|
877
|
-
opacity: 0;
|
|
878
|
-
@include transform(rotate(-90deg));
|
|
879
|
-
@include transform-origin(left bottom);
|
|
880
|
-
}
|
|
881
|
-
100% {
|
|
882
|
-
opacity: 1;
|
|
883
|
-
@include transform(rotate(0));
|
|
884
|
-
@include transform-origin(left bottom);
|
|
885
|
-
}
|
|
886
|
-
}
|
|
887
|
-
@keyframes animation-rotate-in-down-left {
|
|
888
|
-
0% {
|
|
889
|
-
opacity: 0;
|
|
890
|
-
@include transform(rotate(-90deg));
|
|
891
|
-
@include transform-origin(left bottom);
|
|
892
|
-
}
|
|
893
|
-
100% {
|
|
894
|
-
opacity: 1;
|
|
895
|
-
@include transform(rotate(0));
|
|
896
|
-
@include transform-origin(left bottom);
|
|
897
|
-
}
|
|
898
|
-
}
|
|
899
|
-
@-webkit-keyframes animation-rotate-in-down-right {
|
|
900
|
-
0% {
|
|
901
|
-
opacity: 0;
|
|
902
|
-
@include transform(rotate(90deg));
|
|
903
|
-
@include transform-origin(right bottom);
|
|
904
|
-
}
|
|
905
|
-
100% {
|
|
906
|
-
opacity: 1;
|
|
907
|
-
@include transform(rotate(0));
|
|
908
|
-
@include transform-origin(right bottom);
|
|
909
|
-
}
|
|
910
|
-
}
|
|
911
|
-
@keyframes animation-rotate-in-down-right {
|
|
912
|
-
0% {
|
|
913
|
-
opacity: 0;
|
|
914
|
-
@include transform(rotate(90deg));
|
|
915
|
-
@include transform-origin(right bottom);
|
|
916
|
-
}
|
|
917
|
-
100% {
|
|
918
|
-
opacity: 1;
|
|
919
|
-
@include transform(rotate(0));
|
|
920
|
-
@include transform-origin(right bottom);
|
|
921
|
-
}
|
|
922
|
-
}
|
|
923
|
-
@-webkit-keyframes animation-rotate-in-up-left {
|
|
924
|
-
0% {
|
|
925
|
-
opacity: 0;
|
|
926
|
-
@include transform(rotate(90deg));
|
|
927
|
-
@include transform-origin(left bottom);
|
|
928
|
-
}
|
|
929
|
-
100% {
|
|
930
|
-
opacity: 1;
|
|
931
|
-
@include transform(rotate(0));
|
|
932
|
-
@include transform-origin(left bottom);
|
|
933
|
-
}
|
|
934
|
-
}
|
|
935
|
-
@keyframes animation-rotate-in-up-left {
|
|
936
|
-
0% {
|
|
937
|
-
opacity: 0;
|
|
938
|
-
@include transform(rotate(90deg));
|
|
939
|
-
@include transform-origin(left bottom);
|
|
940
|
-
}
|
|
941
|
-
100% {
|
|
942
|
-
opacity: 1;
|
|
943
|
-
@include transform(rotate(0));
|
|
944
|
-
@include transform-origin(left bottom);
|
|
945
|
-
}
|
|
946
|
-
}
|
|
947
|
-
@-webkit-keyframes animation-rotate-in-up-right {
|
|
948
|
-
0% {
|
|
949
|
-
opacity: 0;
|
|
950
|
-
@include transform(rotate(-90deg));
|
|
951
|
-
@include transform-origin(right bottom);
|
|
952
|
-
}
|
|
953
|
-
100% {
|
|
954
|
-
opacity: 1;
|
|
955
|
-
@include transform(rotate(0));
|
|
956
|
-
@include transform-origin(right bottom);
|
|
957
|
-
}
|
|
958
|
-
}
|
|
959
|
-
@keyframes animation-rotate-in-up-right {
|
|
960
|
-
0% {
|
|
961
|
-
opacity: 0;
|
|
962
|
-
@include transform(rotate(-90deg));
|
|
963
|
-
@include transform-origin(right bottom);
|
|
964
|
-
}
|
|
965
|
-
100% {
|
|
966
|
-
opacity: 1;
|
|
967
|
-
@include transform(rotate(0));
|
|
968
|
-
@include transform-origin(right bottom);
|
|
969
|
-
}
|
|
970
|
-
}
|
|
971
|
-
@-webkit-keyframes animation-rotate-out {
|
|
972
|
-
0% {
|
|
973
|
-
opacity: 1;
|
|
974
|
-
@include transform(rotate(0));
|
|
975
|
-
@include transform-origin(center center);
|
|
976
|
-
}
|
|
977
|
-
100% {
|
|
978
|
-
opacity: 0;
|
|
979
|
-
@include transform(rotate(200deg));
|
|
980
|
-
@include transform-origin(center center);
|
|
981
|
-
}
|
|
982
|
-
}
|
|
983
|
-
@keyframes animation-rotate-out {
|
|
984
|
-
0% {
|
|
985
|
-
opacity: 1;
|
|
986
|
-
@include transform(rotate(0));
|
|
987
|
-
@include transform-origin(center center);
|
|
988
|
-
}
|
|
989
|
-
100% {
|
|
990
|
-
opacity: 0;
|
|
991
|
-
@include transform(rotate(200deg));
|
|
992
|
-
@include transform-origin(center center);
|
|
993
|
-
}
|
|
994
|
-
}
|
|
995
|
-
@-webkit-keyframes animation-rotate-out-down-left {
|
|
996
|
-
0% {
|
|
997
|
-
opacity: 1;
|
|
998
|
-
@include transform(rotate(0));
|
|
999
|
-
@include transform-origin(left bottom);
|
|
1000
|
-
}
|
|
1001
|
-
100% {
|
|
1002
|
-
opacity: 0;
|
|
1003
|
-
@include transform(rotate(90deg));
|
|
1004
|
-
@include transform-origin(left bottom);
|
|
1005
|
-
}
|
|
1006
|
-
}
|
|
1007
|
-
@keyframes animation-rotate-out-down-left {
|
|
1008
|
-
0% {
|
|
1009
|
-
opacity: 1;
|
|
1010
|
-
@include transform(rotate(0));
|
|
1011
|
-
@include transform-origin(left bottom);
|
|
1012
|
-
}
|
|
1013
|
-
100% {
|
|
1014
|
-
opacity: 0;
|
|
1015
|
-
@include transform(rotate(90deg));
|
|
1016
|
-
@include transform-origin(left bottom);
|
|
1017
|
-
}
|
|
1018
|
-
}
|
|
1019
|
-
@-webkit-keyframes animation-rotate-out-down-right {
|
|
1020
|
-
0% {
|
|
1021
|
-
opacity: 1;
|
|
1022
|
-
@include transform(rotate(0));
|
|
1023
|
-
@include transform-origin(right bottom);
|
|
1024
|
-
}
|
|
1025
|
-
100% {
|
|
1026
|
-
opacity: 0;
|
|
1027
|
-
@include transform(rotate(-90deg));
|
|
1028
|
-
@include transform-origin(right bottom);
|
|
1029
|
-
}
|
|
1030
|
-
}
|
|
1031
|
-
@keyframes animation-rotate-out-down-right {
|
|
1032
|
-
0% {
|
|
1033
|
-
opacity: 1;
|
|
1034
|
-
@include transform(rotate(0));
|
|
1035
|
-
@include transform-origin(right bottom);
|
|
1036
|
-
}
|
|
1037
|
-
100% {
|
|
1038
|
-
opacity: 0;
|
|
1039
|
-
@include transform(rotate(-90deg));
|
|
1040
|
-
@include transform-origin(right bottom);
|
|
1041
|
-
}
|
|
1042
|
-
}
|
|
1043
|
-
@-webkit-keyframes animation-rotate-out-up-left {
|
|
1044
|
-
0% {
|
|
1045
|
-
opacity: 1;
|
|
1046
|
-
@include transform(rotate(0));
|
|
1047
|
-
@include transform-origin(left bottom);
|
|
1048
|
-
}
|
|
1049
|
-
100% {
|
|
1050
|
-
opacity: 0;
|
|
1051
|
-
@include transform(rotate(-90deg));
|
|
1052
|
-
@include transform-origin(left bottom);
|
|
1053
|
-
}
|
|
1054
|
-
}
|
|
1055
|
-
@keyframes animation-rotate-out-up-left {
|
|
1056
|
-
0% {
|
|
1057
|
-
opacity: 1;
|
|
1058
|
-
@include transform(rotate(0));
|
|
1059
|
-
@include transform-origin(left bottom);
|
|
1060
|
-
}
|
|
1061
|
-
100% {
|
|
1062
|
-
opacity: 0;
|
|
1063
|
-
@include transform(rotate(-90deg));
|
|
1064
|
-
@include transform-origin(left bottom);
|
|
1065
|
-
}
|
|
1066
|
-
}
|
|
1067
|
-
@-webkit-keyframes animation-rotate-out-up-right {
|
|
1068
|
-
0% {
|
|
1069
|
-
opacity: 1;
|
|
1070
|
-
@include transform(rotate(0));
|
|
1071
|
-
@include transform-origin(right bottom);
|
|
1072
|
-
}
|
|
1073
|
-
100% {
|
|
1074
|
-
opacity: 0;
|
|
1075
|
-
@include transform(rotate(90deg));
|
|
1076
|
-
@include transform-origin(right bottom);
|
|
1077
|
-
}
|
|
1078
|
-
}
|
|
1079
|
-
@keyframes animation-rotate-out-up-right {
|
|
1080
|
-
0% {
|
|
1081
|
-
opacity: 1;
|
|
1082
|
-
@include transform(rotate(0));
|
|
1083
|
-
@include transform-origin(right bottom);
|
|
1084
|
-
}
|
|
1085
|
-
100% {
|
|
1086
|
-
opacity: 0;
|
|
1087
|
-
@include transform(rotate(90deg));
|
|
1088
|
-
@include transform-origin(right bottom);
|
|
1089
|
-
}
|
|
1090
|
-
}
|
|
1091
|
-
@-webkit-keyframes animation-slide-in-down {
|
|
1092
|
-
0% {
|
|
1093
|
-
opacity: 0;
|
|
1094
|
-
@include transform(translateY(-2000px));
|
|
1095
|
-
}
|
|
1096
|
-
100% { @include transform(translateY(0)); }
|
|
1097
|
-
}
|
|
1098
|
-
@keyframes animation-slide-in-down {
|
|
1099
|
-
0% {
|
|
1100
|
-
opacity: 0;
|
|
1101
|
-
@include transform(translateY(-2000px));
|
|
1102
|
-
}
|
|
1103
|
-
100% { @include transform(translateY(0)); }
|
|
1104
|
-
}
|
|
1105
|
-
@-webkit-keyframes animation-slide-in-left {
|
|
1106
|
-
0% {
|
|
1107
|
-
opacity: 0;
|
|
1108
|
-
@include transform(translateX(-2000px));
|
|
1109
|
-
}
|
|
1110
|
-
100% { @include transform(translateX(0)); }
|
|
1111
|
-
}
|
|
1112
|
-
@keyframes animation-slide-in-left {
|
|
1113
|
-
0% {
|
|
1114
|
-
opacity: 0;
|
|
1115
|
-
@include transform(translateX(-2000px));
|
|
1116
|
-
}
|
|
1117
|
-
100% { @include transform(translateX(0)); }
|
|
1118
|
-
}
|
|
1119
|
-
@-webkit-keyframes animation-slide-in-right {
|
|
1120
|
-
0% {
|
|
1121
|
-
opacity: 0;
|
|
1122
|
-
@include transform(translateX(2000px));
|
|
1123
|
-
}
|
|
1124
|
-
100% { @include transform(translateX(0)); }
|
|
1125
|
-
}
|
|
1126
|
-
@keyframes animation-slide-in-right {
|
|
1127
|
-
0% {
|
|
1128
|
-
opacity: 0;
|
|
1129
|
-
@include transform(translateX(2000px));
|
|
1130
|
-
}
|
|
1131
|
-
100% { @include transform(translateX(0)); }
|
|
1132
|
-
}
|
|
1133
|
-
@-webkit-keyframes animation-slide-out-left {
|
|
1134
|
-
0% { @include transform(translateX(0)); }
|
|
1135
|
-
100% {
|
|
1136
|
-
opacity: 0;
|
|
1137
|
-
@include transform(translateX(-2000px));
|
|
1138
|
-
}
|
|
1139
|
-
}
|
|
1140
|
-
@keyframes animation-slide-out-left {
|
|
1141
|
-
0% { @include transform(translateX(0)); }
|
|
1142
|
-
100% {
|
|
1143
|
-
opacity: 0;
|
|
1144
|
-
@include transform(translateX(-2000px));
|
|
1145
|
-
}
|
|
1146
|
-
}
|
|
1147
|
-
@-webkit-keyframes animation-slide-out-right {
|
|
1148
|
-
0% { @include transform(translateX(0)); }
|
|
1149
|
-
100% {
|
|
1150
|
-
opacity: 0;
|
|
1151
|
-
@include transform(translateX(2000px));
|
|
1152
|
-
}
|
|
1153
|
-
}
|
|
1154
|
-
@keyframes animation-slide-out-right {
|
|
1155
|
-
0% { @include transform(translateX(0)); }
|
|
1156
|
-
100% {
|
|
1157
|
-
opacity: 0;
|
|
1158
|
-
@include transform(translateX(2000px));
|
|
1159
|
-
}
|
|
1160
|
-
}
|
|
1161
|
-
@-webkit-keyframes animation-slide-out-up {
|
|
1162
|
-
0% { @include transform(translateY(0)); }
|
|
1163
|
-
100% {
|
|
1164
|
-
opacity: 0;
|
|
1165
|
-
@include transform(translateY(-2000px));
|
|
1166
|
-
}
|
|
1167
|
-
}
|
|
1168
|
-
@keyframes animation-slide-out-up {
|
|
1169
|
-
0% { @include transform(translateY(0)); }
|
|
1170
|
-
100% {
|
|
1171
|
-
opacity: 0;
|
|
1172
|
-
@include transform(translateY(-2000px));
|
|
1173
|
-
}
|
|
1174
|
-
}
|
|
1175
|
-
@-webkit-keyframes animation-hinge {
|
|
1176
|
-
0% {
|
|
1177
|
-
@include transform(rotate(0));
|
|
1178
|
-
@include transform-origin(top left);
|
|
1179
|
-
}
|
|
1180
|
-
20%, 60% {
|
|
1181
|
-
@include transform(rotate(80deg));
|
|
1182
|
-
@include transform-origin(top left);
|
|
1183
|
-
}
|
|
1184
|
-
40% {
|
|
1185
|
-
@include transform(rotate(60deg));
|
|
1186
|
-
@include transform-origin(top left);
|
|
1187
|
-
}
|
|
1188
|
-
80% {
|
|
1189
|
-
opacity: 1;
|
|
1190
|
-
@include transform(rotate(60deg) translateY(0));
|
|
1191
|
-
@include transform-origin(top left);
|
|
1192
|
-
}
|
|
1193
|
-
100% {
|
|
1194
|
-
opacity: 0;
|
|
1195
|
-
@include transform(translateY(700px));
|
|
1196
|
-
}
|
|
1197
|
-
}
|
|
1198
|
-
@keyframes animation-hinge {
|
|
1199
|
-
0% {
|
|
1200
|
-
@include transform(rotate(0));
|
|
1201
|
-
@include transform-origin(top left);
|
|
1202
|
-
}
|
|
1203
|
-
20%, 60% {
|
|
1204
|
-
@include transform(rotate(80deg));
|
|
1205
|
-
@include transform-origin(top left);
|
|
1206
|
-
}
|
|
1207
|
-
40% {
|
|
1208
|
-
@include transform(rotate(60deg));
|
|
1209
|
-
@include transform-origin(top left);
|
|
1210
|
-
}
|
|
1211
|
-
80% {
|
|
1212
|
-
opacity: 1;
|
|
1213
|
-
@include transform(rotate(60deg) translateY(0));
|
|
1214
|
-
@include transform-origin(top left);
|
|
1215
|
-
}
|
|
1216
|
-
100% {
|
|
1217
|
-
opacity: 0;
|
|
1218
|
-
@include transform(translateY(700px));
|
|
1219
|
-
}
|
|
1220
|
-
}
|
|
1221
|
-
@-webkit-keyframes animation-roll-in {
|
|
1222
|
-
0% {
|
|
1223
|
-
opacity: 0;
|
|
1224
|
-
@include transform(translateX(-100%) rotate(-120deg));
|
|
1225
|
-
}
|
|
1226
|
-
100% {
|
|
1227
|
-
opacity: 1;
|
|
1228
|
-
@include transform(translateX(0) rotate(0));
|
|
1229
|
-
}
|
|
1230
|
-
}
|
|
1231
|
-
@keyframes animation-roll-in {
|
|
1232
|
-
0% {
|
|
1233
|
-
opacity: 0;
|
|
1234
|
-
@include transform(translateX(-100%) rotate(-120deg));
|
|
1235
|
-
}
|
|
1236
|
-
100% {
|
|
1237
|
-
opacity: 1;
|
|
1238
|
-
@include transform(translateX(0) rotate(0));
|
|
1239
|
-
}
|
|
1240
|
-
}
|
|
1241
|
-
@-webkit-keyframes animation-roll-out {
|
|
1242
|
-
0% {
|
|
1243
|
-
opacity: 1;
|
|
1244
|
-
@include transform(translateX(0) rotate(0));
|
|
1245
|
-
}
|
|
1246
|
-
100% {
|
|
1247
|
-
opacity: 0;
|
|
1248
|
-
@include transform(translateX(100%) rotate(120deg));
|
|
1249
|
-
}
|
|
1250
|
-
}
|
|
1251
|
-
@keyframes animation-roll-out {
|
|
1252
|
-
0% {
|
|
1253
|
-
opacity: 1;
|
|
1254
|
-
@include transform(translateX(0) rotate(0));
|
|
1255
|
-
}
|
|
1256
|
-
100% {
|
|
1257
|
-
opacity: 0;
|
|
1258
|
-
@include transform(translateX(100%) rotate(120deg));
|
|
1259
|
-
}
|
|
1260
|
-
}
|
|
1261
|
-
|
|
1262
|
-
/* # Animation
|
|
1263
|
-
================================================== */
|
|
1264
|
-
.animation {
|
|
1265
|
-
@include animation-duration(1s);
|
|
1266
|
-
@include animation-fill-mode(both);
|
|
1267
|
-
position: relative;
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1270
|
-
/* # Names
|
|
1271
|
-
================================================== */
|
|
1272
|
-
.animation-bounce { @include animation-name(animation-bounce); }
|
|
1273
|
-
.animation-flash { @include animation-name(animation-flash); }
|
|
1274
|
-
.animation-pulse { @include animation-name(animation-pulse); }
|
|
1275
|
-
.animation-shake { @include animation-name(animation-shake); }
|
|
1276
|
-
.animation-swing {
|
|
1277
|
-
@include animation-name(animation-swing);
|
|
1278
|
-
@include transform-origin(top center);
|
|
1279
|
-
}
|
|
1280
|
-
.animation-tada { @include animation-name(animation-tada); }
|
|
1281
|
-
.animation-wobble { @include animation-name(animation-wobble); }
|
|
1282
|
-
.animation-bounce-in { @include animation-name(animation-bounce-in); }
|
|
1283
|
-
.animation-bounce-in-down { @include animation-name(animation-bounce-in-down); }
|
|
1284
|
-
.animation-bounce-in-left { @include animation-name(animation-bounce-in-left); }
|
|
1285
|
-
.animation-bounce-in-right { @include animation-name(animation-bounce-in-right); }
|
|
1286
|
-
.animation-bounce-in-up { @include animation-name(animation-bounce-in-up); }
|
|
1287
|
-
.animation-bounce-out { @include animation-name(animation-bounce-out); }
|
|
1288
|
-
.animation-bounce-out-down { @include animation-name(animation-bounce-out-down); }
|
|
1289
|
-
.animation-bounce-out-left { @include animation-name(animation-bounce-out-left); }
|
|
1290
|
-
.animation-bounce-out-right { @include animation-name(animation-bounce-out-right); }
|
|
1291
|
-
.animation-bounce-out-up { @include animation-name(animation-bounce-out-up); }
|
|
1292
|
-
.animation-fade-in { @include animation-name(animation-fade-in); }
|
|
1293
|
-
.animation-fade-in-down { @include animation-name(animation-fade-in-down); }
|
|
1294
|
-
.animation-fade-in-down-big { @include animation-name(animation-fade-in-down-big); }
|
|
1295
|
-
.animation-fade-in-left { @include animation-name(animation-fade-in-left); }
|
|
1296
|
-
.animation-fade-in-left-big { @include animation-name(animation-fade-in-left); }
|
|
1297
|
-
.animation-fade-in-right { @include animation-name(animation-fade-in-right); }
|
|
1298
|
-
.animation-fade-in-right-big { @include animation-name(animation-fade-in-right-big); }
|
|
1299
|
-
.animation-fade-in-up { @include animation-name(animation-fade-in-up); }
|
|
1300
|
-
.animation-fade-in-up-big { @include animation-name(animation-fade-in-up-big); }
|
|
1301
|
-
.animation-fade-out { @include animation-name(animation-fade-out); }
|
|
1302
|
-
.animation-fade-out-down { @include animation-name(animation-fade-out-down); }
|
|
1303
|
-
.animation-fade-out-down-big { @include animation-name(animation-fade-out-down-big); }
|
|
1304
|
-
.animation-fade-out-left { @include animation-name(animation-fade-out-left); }
|
|
1305
|
-
.animation-fade-out-left-big { @include animation-name(animation-fade-out-left-big); }
|
|
1306
|
-
.animation-fade-out-right { @include animation-name(animation-fade-out-right); }
|
|
1307
|
-
.animation-fade-out-right-big { @include animation-name(animation-fade-out-right-big); }
|
|
1308
|
-
.animation-fade-out-up { @include animation-name(animation-fade-out-up); }
|
|
1309
|
-
.animation-fade-out-up-big { @include animation-name(animation-fade-out-up-big); }
|
|
1310
|
-
.animation-flip { @include animation-name(animation-flip); }
|
|
1311
|
-
.animation-flip-in-x { @include animation-name(animation-flip-in-x); }
|
|
1312
|
-
.animation-flip-in-y { @include animation-name(animation-flip-in-y); }
|
|
1313
|
-
.animation-flip-out-x { @include animation-name(animation-flip-out-x); }
|
|
1314
|
-
.animation-flip-out-y { @include animation-name(animation-flip-out-y); }
|
|
1315
|
-
.animation-flip,
|
|
1316
|
-
.animation-flip-in-x,
|
|
1317
|
-
.animation-flip-in-y,
|
|
1318
|
-
.animation-flip-out-x,
|
|
1319
|
-
.animation-flip-out-y { @include backface-visibility(visible); }
|
|
1320
|
-
.animation-light-speed-in {
|
|
1321
|
-
@include animation-name(animation-light-speed-in);
|
|
1322
|
-
@include animation-timing-function(ease-out);
|
|
1323
|
-
}
|
|
1324
|
-
.animation-light-speed-out {
|
|
1325
|
-
@include animation-name(animation-light-speed-out);
|
|
1326
|
-
@include animation-timing-function(ease-in);
|
|
1327
|
-
}
|
|
1328
|
-
.animation-rotate-in { @include animation-name(animation-rotate-in); }
|
|
1329
|
-
.animation-rotate-in-down-left { @include animation-name(animation-rotate-in-down-left); }
|
|
1330
|
-
.animation-rotate-in-down-right { @include animation-name(animation-rotate-in-down-right); }
|
|
1331
|
-
.animation-rotate-in-up-left { @include animation-name(animation-rotate-in-up-left); }
|
|
1332
|
-
.animation-rotate-in-up-right { @include animation-name(animation-rotate-in-up-right); }
|
|
1333
|
-
.animation-rotate-out { @include animation-name(animation-rotate-out); }
|
|
1334
|
-
.animation-rotate-out-down-left { @include animation-name(animation-rotate-out-down-left); }
|
|
1335
|
-
.animation-rotate-out-down-right { @include animation-name(animation-rotate-out-down-right); }
|
|
1336
|
-
.animation-rotate-out-up-left { @include animation-name(animation-rotate-out-up-left); }
|
|
1337
|
-
.animation-rotate-out-up-right { @include animation-name(animation-rotate-out-up-right); }
|
|
1338
|
-
.animation-slide-in-down { @include animation-name(animation-slide-in-down); }
|
|
1339
|
-
.animation-slide-in-left { @include animation-name(animation-slide-in-left); }
|
|
1340
|
-
.animation-slide-in-right { @include animation-name(animation-slide-in-right); }
|
|
1341
|
-
.animation-slide-out-left { @include animation-name(animation-slide-out-left); }
|
|
1342
|
-
.animation-slide-out-right { @include animation-name(animation-slide-out-right); }
|
|
1343
|
-
.animation-slide-out-up { @include animation-name(animation-slide-out-up); }
|
|
1344
|
-
.animation-hinge {
|
|
1345
|
-
@include animation-duration(2s);
|
|
1346
|
-
@include animation-name(animation-hinge);
|
|
1347
|
-
@include animation-timing-function(ease-in-out);
|
|
1348
|
-
}
|
|
1349
|
-
.animation-roll-in { @include animation-name(animation-roll-in); }
|
|
1350
|
-
.animation-roll-out { @include animation-name(animation-roll-out); }
|
|
1351
|
-
|
|
1352
|
-
/* # Delays
|
|
1353
|
-
================================================== */
|
|
1354
|
-
.animation.animation-delay-shortest { @include animation-delay(0.25s); }
|
|
1355
|
-
.animation.animation-delay-shorter { @include animation-delay(0.5s); }
|
|
1356
|
-
.animation.animation-delay-short { @include animation-delay(0.75s); }
|
|
1357
|
-
.animation.animation-delay-default { @include animation-delay(1s); }
|
|
1358
|
-
.animation.animation-delay-long { @include animation-delay(1.25s); }
|
|
1359
|
-
.animation.animation-delay-longer { @include animation-delay(1.5s); }
|
|
1360
|
-
.animation.animation-delay-longest { @include animation-delay(1.75s); }
|
|
1361
|
-
|
|
1362
|
-
/* # Durations
|
|
1363
|
-
================================================== */
|
|
1364
|
-
.animation.animation-duration-fastest { @include animation-duration(0.25s); }
|
|
1365
|
-
.animation.animation-duration-faster { @include animation-duration(0.5s); }
|
|
1366
|
-
.animation.animation-duration-fast { @include animation-duration(0.75s); }
|
|
1367
|
-
.animation.animation-duration-default { @include animation-duration(1s); }
|
|
1368
|
-
.animation.animation-duration-slow { @include animation-duration(1.25s); }
|
|
1369
|
-
.animation.animation-duration-slower { @include animation-duration(1.5s); }
|
|
1370
|
-
.animation.animation-duration-slowest { @include animation-duration(1.75s); }
|