aboutsummaryrefslogtreecommitdiff
path: root/doc/that_style/sass/_mixins.scss
blob: aa030def9fb0130ede90167cf83f5b8a060ad088 (plain)
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
@mixin box-shadow($args...) {
    -moz-box-shadow:    $args;
    -webkit-box-shadow: $args;
    -o-box-shadow:      $args;
    box-shadow:         $args;
}

@mixin border-radius($args...) {
    -moz-border-radius:    $args;
    -webkit-border-radius: $args;
    border-radius:         $args;
}

@mixin transition($args...) {
    -webkit-transition: $args;
    -moz-transition:    $args;
    -o-transition:      $args;
    transition:         $args;
}

@mixin transition-property($arg) {
    -webkit-transition: $arg;
    -moz-transition:    $arg;
    -o-transition:      $arg;
    transition:         $arg;
}

@mixin transition-duration($arg) {
    -webkit-duration: $arg;
    -moz-duration:    $arg;
    -o-duration:      $arg;
    duration:         $arg;
}