diff options
author | Eric Bidelman | 2012-04-08 17:51:12 -0700 |
---|---|---|
committer | Eric Bidelman | 2012-04-08 17:51:12 -0700 |
commit | 79c730f664bd8bda196c13282c5650f4ab282b25 (patch) | |
tree | 3c6bc4ffcd0891266435f936961f7f2c7af7232f /theme/sass/_base.scss | |
parent | db92c5e0c26ba0bb545993bb48533d39f1934b95 (diff) | |
download | io-slides-remote-79c730f664bd8bda196c13282c5650f4ab282b25.tar.gz |
More styling. Fixes for FF
Diffstat (limited to 'theme/sass/_base.scss')
-rw-r--r-- | theme/sass/_base.scss | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/theme/sass/_base.scss b/theme/sass/_base.scss index 6490ef8..d8b9554 100644 --- a/theme/sass/_base.scss +++ b/theme/sass/_base.scss | |||
@@ -16,17 +16,25 @@ | |||
16 | -o-font-smoothing: $val; | 16 | -o-font-smoothing: $val; |
17 | } | 17 | } |
18 | 18 | ||
19 | @mixin flexcenter { | 19 | @mixin flexbox { |
20 | display: -webkit-box !important; | 20 | display: -webkit-box !important; |
21 | display: -moz-box !important; | 21 | display: -moz-box !important; |
22 | display: -ms-box !important; | 22 | display: -ms-box !important; |
23 | display: -o-box !important; | 23 | display: -o-box !important; |
24 | display: box !important; | 24 | display: box !important; |
25 | } | ||
26 | |||
27 | @mixin flex-center-center { | ||
25 | @include box-orient(vertical); | 28 | @include box-orient(vertical); |
26 | @include box-align(center); | 29 | @include box-align(center); |
27 | @include box-pack(center); | 30 | @include box-pack(center); |
28 | } | 31 | } |
29 | 32 | ||
33 | @mixin flex-left-center { | ||
34 | @include box-orient(vertical); | ||
35 | @include box-align(left); | ||
36 | @include box-pack(center); | ||
37 | } | ||
30 | 38 | ||
31 | /** | 39 | /** |
32 | * Base SlideDeck Styles | 40 | * Base SlideDeck Styles |