This repository has been archived by the owner on Mar 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.sass
63 lines (46 loc) · 1.42 KB
/
index.sass
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Vendor Helpers
// ==============
// List of support vendor prefixes.
$vendors: '-webkit-' ''
@mixin vendorize($property, $values...)
@each $vendor in $vendors
#{$vendor}#{$property}: $values
@mixin animation-duration($arguments...)
+vendorize(animation-duration, $arguments)
@mixin animation-fill-mode($arguments...)
+vendorize(animation-fill-mode, $arguments)
@mixin animation-name($arguments...)
+vendorize(animation-name, $arguments)
@mixin animation-timing-function($arguments...)
+vendorize(animation-timing-function, $arguments)
@mixin transform-origin($arguments...)
+vendorize(transform-origin, $arguments)
@mixin transform-style($arguments...)
+vendorize(transform-style, $arguments)
@mixin backface-visibility($arguments...)
+vendorize(backface-visibility, $arguments)
// General
// =======
// Set some defaults that can be overriden on a per-animation basis.
.animated
+animation-duration(.75s)
+animation-fill-mode(both)
// Animations
// ==========
@import animations/bounce
@import animations/fade
@import animations/flash
@import animations/flip
@import animations/fold
@import animations/grow
@import animations/hinge
@import animations/light-speed
@import animations/pulse
@import animations/roll
@import animations/rotate
@import animations/shake
@import animations/shrink
@import animations/swing
@import animations/tada
@import animations/wiggle
@import animations/wobble