deckr 0.1.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.
- data/Gemfile +7 -0
- data/LICENSE +22 -0
- data/README.md +29 -0
- data/Rakefile +9 -0
- data/bin/deckr +3 -0
- data/lib/deckr.rb +7 -0
- data/lib/deckr/cli.rb +22 -0
- data/lib/deckr/deck.rb +64 -0
- data/lib/deckr/package.rb +22 -0
- data/lib/deckr/resource.rb +37 -0
- data/lib/deckr/templates/Gemfile +5 -0
- data/lib/deckr/templates/config.ru +12 -0
- data/lib/deckr/templates/deck/GPL-license.txt +278 -0
- data/lib/deckr/templates/deck/MIT-license.txt +21 -0
- data/lib/deckr/templates/deck/README.md +64 -0
- data/lib/deckr/templates/deck/boilerplate.html +96 -0
- data/lib/deckr/templates/deck/core/deck.core.css +407 -0
- data/lib/deckr/templates/deck/core/deck.core.js +498 -0
- data/lib/deckr/templates/deck/core/deck.core.scss +450 -0
- data/lib/deckr/templates/deck/extensions/goto/deck.goto.css +41 -0
- data/lib/deckr/templates/deck/extensions/goto/deck.goto.html +7 -0
- data/lib/deckr/templates/deck/extensions/goto/deck.goto.js +170 -0
- data/lib/deckr/templates/deck/extensions/goto/deck.goto.scss +46 -0
- data/lib/deckr/templates/deck/extensions/hash/deck.hash.css +13 -0
- data/lib/deckr/templates/deck/extensions/hash/deck.hash.html +2 -0
- data/lib/deckr/templates/deck/extensions/hash/deck.hash.js +142 -0
- data/lib/deckr/templates/deck/extensions/hash/deck.hash.scss +15 -0
- data/lib/deckr/templates/deck/extensions/menu/deck.menu.css +47 -0
- data/lib/deckr/templates/deck/extensions/menu/deck.menu.js +187 -0
- data/lib/deckr/templates/deck/extensions/menu/deck.menu.scss +58 -0
- data/lib/deckr/templates/deck/extensions/navigation/deck.navigation.css +43 -0
- data/lib/deckr/templates/deck/extensions/navigation/deck.navigation.html +3 -0
- data/lib/deckr/templates/deck/extensions/navigation/deck.navigation.js +92 -0
- data/lib/deckr/templates/deck/extensions/navigation/deck.navigation.scss +56 -0
- data/lib/deckr/templates/deck/extensions/scale/deck.scale.css +28 -0
- data/lib/deckr/templates/deck/extensions/scale/deck.scale.js +170 -0
- data/lib/deckr/templates/deck/extensions/scale/deck.scale.scss +31 -0
- data/lib/deckr/templates/deck/extensions/status/deck.status.css +18 -0
- data/lib/deckr/templates/deck/extensions/status/deck.status.html +6 -0
- data/lib/deckr/templates/deck/extensions/status/deck.status.js +95 -0
- data/lib/deckr/templates/deck/extensions/status/deck.status.scss +22 -0
- data/lib/deckr/templates/deck/introduction/index.html +215 -0
- data/lib/deckr/templates/deck/jquery-1.7.2.min.js +4 -0
- data/lib/deckr/templates/deck/modernizr.custom.js +4 -0
- data/lib/deckr/templates/deck/test/fixtures/complex.html +24 -0
- data/lib/deckr/templates/deck/test/fixtures/empty.html +19 -0
- data/lib/deckr/templates/deck/test/fixtures/iframe_simple.html +10 -0
- data/lib/deckr/templates/deck/test/fixtures/iframes.html +32 -0
- data/lib/deckr/templates/deck/test/fixtures/nesteds.html +36 -0
- data/lib/deckr/templates/deck/test/fixtures/standard.html +42 -0
- data/lib/deckr/templates/deck/test/index.html +39 -0
- data/lib/deckr/templates/deck/test/lib/jasmine-html.js +190 -0
- data/lib/deckr/templates/deck/test/lib/jasmine-jquery.js +288 -0
- data/lib/deckr/templates/deck/test/lib/jasmine.css +166 -0
- data/lib/deckr/templates/deck/test/lib/jasmine.js +2477 -0
- data/lib/deckr/templates/deck/test/settings.js +3 -0
- data/lib/deckr/templates/deck/test/spec.core.js +436 -0
- data/lib/deckr/templates/deck/test/spec.goto.js +142 -0
- data/lib/deckr/templates/deck/test/spec.hash.js +81 -0
- data/lib/deckr/templates/deck/test/spec.menu.js +66 -0
- data/lib/deckr/templates/deck/test/spec.navigation.js +51 -0
- data/lib/deckr/templates/deck/test/spec.scale.js +57 -0
- data/lib/deckr/templates/deck/test/spec.status.js +58 -0
- data/lib/deckr/templates/deck/themes/style/neon.css +123 -0
- data/lib/deckr/templates/deck/themes/style/neon.scss +155 -0
- data/lib/deckr/templates/deck/themes/style/swiss.css +84 -0
- data/lib/deckr/templates/deck/themes/style/swiss.scss +107 -0
- data/lib/deckr/templates/deck/themes/style/web-2.0.css +214 -0
- data/lib/deckr/templates/deck/themes/style/web-2.0.scss +250 -0
- data/lib/deckr/templates/deck/themes/transition/fade.css +43 -0
- data/lib/deckr/templates/deck/themes/transition/fade.scss +69 -0
- data/lib/deckr/templates/deck/themes/transition/horizontal-slide.css +76 -0
- data/lib/deckr/templates/deck/themes/transition/horizontal-slide.scss +90 -0
- data/lib/deckr/templates/deck/themes/transition/vertical-slide.css +94 -0
- data/lib/deckr/templates/deck/themes/transition/vertical-slide.scss +112 -0
- data/lib/deckr/templates/views/index.slim +13 -0
- data/lib/deckr/templates/views/layout.slim +48 -0
- data/lib/deckr/version.rb +3 -0
- data/lib/rack/deckr.rb +31 -0
- data/lib/sinatra/deckr.rb +17 -0
- data/spec/deck_spec.rb +118 -0
- data/spec/fixtures/foo.txt +1 -0
- data/spec/fixtures/foo/bar.txt +1 -0
- data/spec/package_spec.rb +45 -0
- data/spec/rack/deckr_spec.rb +38 -0
- data/spec/resource_spec.rb +62 -0
- data/spec/sinatra/deckr_spec.rb +32 -0
- data/spec/spec_helper.rb +27 -0
- metadata +161 -0
@@ -0,0 +1,7 @@
|
|
1
|
+
<!-- Place the following snippet at the bottom of the deck container. -->
|
2
|
+
<form action="." method="get" class="goto-form">
|
3
|
+
<label for="goto-slide">Go to slide:</label>
|
4
|
+
<input type="text" name="slidenum" id="goto-slide" list="goto-datalist">
|
5
|
+
<datalist id="goto-datalist"></datalist>
|
6
|
+
<input type="submit" value="Go">
|
7
|
+
</form>
|
@@ -0,0 +1,170 @@
|
|
1
|
+
/*!
|
2
|
+
Deck JS - deck.goto
|
3
|
+
Copyright (c) 2011 Caleb Troughton
|
4
|
+
Dual licensed under the MIT license and GPL license.
|
5
|
+
https://github.com/imakewebthings/deck.js/blob/master/MIT-license.txt
|
6
|
+
https://github.com/imakewebthings/deck.js/blob/master/GPL-license.txt
|
7
|
+
*/
|
8
|
+
|
9
|
+
/*
|
10
|
+
This module adds the necessary methods and key bindings to show and hide a form
|
11
|
+
for jumping to any slide number/id in the deck (and processes that form
|
12
|
+
accordingly). The form-showing state is indicated by the presence of a class on
|
13
|
+
the deck container.
|
14
|
+
*/
|
15
|
+
(function($, deck, undefined) {
|
16
|
+
var $d = $(document);
|
17
|
+
|
18
|
+
/*
|
19
|
+
Extends defaults/options.
|
20
|
+
|
21
|
+
options.classes.goto
|
22
|
+
This class is added to the deck container when showing the Go To Slide
|
23
|
+
form.
|
24
|
+
|
25
|
+
options.selectors.gotoDatalist
|
26
|
+
The element that matches this selector is the datalist element that will
|
27
|
+
be populated with options for each of the slide ids. In browsers that
|
28
|
+
support the datalist element, this provides a drop list of slide ids to
|
29
|
+
aid the user in selecting a slide.
|
30
|
+
|
31
|
+
options.selectors.gotoForm
|
32
|
+
The element that matches this selector is the form that is submitted
|
33
|
+
when a user hits enter after typing a slide number/id in the gotoInput
|
34
|
+
element.
|
35
|
+
|
36
|
+
options.selectors.gotoInput
|
37
|
+
The element that matches this selector is the text input field for
|
38
|
+
entering a slide number/id in the Go To Slide form.
|
39
|
+
|
40
|
+
options.keys.goto
|
41
|
+
The numeric keycode used to show the Go To Slide form.
|
42
|
+
|
43
|
+
options.countNested
|
44
|
+
If false, only top level slides will be counted when entering a
|
45
|
+
slide number.
|
46
|
+
*/
|
47
|
+
$.extend(true, $[deck].defaults, {
|
48
|
+
classes: {
|
49
|
+
goto: 'deck-goto'
|
50
|
+
},
|
51
|
+
|
52
|
+
selectors: {
|
53
|
+
gotoDatalist: '#goto-datalist',
|
54
|
+
gotoForm: '.goto-form',
|
55
|
+
gotoInput: '#goto-slide'
|
56
|
+
},
|
57
|
+
|
58
|
+
keys: {
|
59
|
+
goto: 71 // g
|
60
|
+
},
|
61
|
+
|
62
|
+
countNested: true
|
63
|
+
});
|
64
|
+
|
65
|
+
/*
|
66
|
+
jQuery.deck('showGoTo')
|
67
|
+
|
68
|
+
Shows the Go To Slide form by adding the class specified by the goto class
|
69
|
+
option to the deck container.
|
70
|
+
*/
|
71
|
+
$[deck]('extend', 'showGoTo', function() {
|
72
|
+
$[deck]('getContainer').addClass($[deck]('getOptions').classes.goto);
|
73
|
+
$($[deck]('getOptions').selectors.gotoInput).focus();
|
74
|
+
});
|
75
|
+
|
76
|
+
/*
|
77
|
+
jQuery.deck('hideGoTo')
|
78
|
+
|
79
|
+
Hides the Go To Slide form by removing the class specified by the goto class
|
80
|
+
option from the deck container.
|
81
|
+
*/
|
82
|
+
$[deck]('extend', 'hideGoTo', function() {
|
83
|
+
$($[deck]('getOptions').selectors.gotoInput).blur();
|
84
|
+
$[deck]('getContainer').removeClass($[deck]('getOptions').classes.goto);
|
85
|
+
});
|
86
|
+
|
87
|
+
/*
|
88
|
+
jQuery.deck('toggleGoTo')
|
89
|
+
|
90
|
+
Toggles between showing and hiding the Go To Slide form.
|
91
|
+
*/
|
92
|
+
$[deck]('extend', 'toggleGoTo', function() {
|
93
|
+
$[deck]($[deck]('getContainer').hasClass($[deck]('getOptions').classes.goto) ? 'hideGoTo' : 'showGoTo');
|
94
|
+
});
|
95
|
+
|
96
|
+
$d.bind('deck.init', function() {
|
97
|
+
var opts = $[deck]('getOptions'),
|
98
|
+
$datalist = $(opts.selectors.gotoDatalist),
|
99
|
+
slideTest = $.map([
|
100
|
+
opts.classes.before,
|
101
|
+
opts.classes.previous,
|
102
|
+
opts.classes.current,
|
103
|
+
opts.classes.next,
|
104
|
+
opts.classes.after
|
105
|
+
], function(el, i) {
|
106
|
+
return '.' + el;
|
107
|
+
}).join(', '),
|
108
|
+
rootCounter = 1;
|
109
|
+
|
110
|
+
// Bind key events
|
111
|
+
$d.unbind('keydown.deckgoto').bind('keydown.deckgoto', function(e) {
|
112
|
+
var key = $[deck]('getOptions').keys.goto;
|
113
|
+
|
114
|
+
if (e.which === key || $.inArray(e.which, key) > -1) {
|
115
|
+
e.preventDefault();
|
116
|
+
$[deck]('toggleGoTo');
|
117
|
+
}
|
118
|
+
});
|
119
|
+
|
120
|
+
/* Populate datalist and work out countNested*/
|
121
|
+
$.each($[deck]('getSlides'), function(i, $slide) {
|
122
|
+
var id = $slide.attr('id'),
|
123
|
+
$parentSlides = $slide.parentsUntil(opts.selectors.container, slideTest);
|
124
|
+
|
125
|
+
if (id) {
|
126
|
+
$datalist.append('<option value="' + id + '">');
|
127
|
+
}
|
128
|
+
|
129
|
+
if ($parentSlides.length) {
|
130
|
+
$slide.removeData('rootIndex');
|
131
|
+
}
|
132
|
+
else if (!opts.countNested) {
|
133
|
+
$slide.data('rootIndex', rootCounter);
|
134
|
+
++rootCounter;
|
135
|
+
}
|
136
|
+
});
|
137
|
+
|
138
|
+
// Process form submittal, go to the slide entered
|
139
|
+
$(opts.selectors.gotoForm)
|
140
|
+
.unbind('submit.deckgoto')
|
141
|
+
.bind('submit.deckgoto', function(e) {
|
142
|
+
var $field = $($[deck]('getOptions').selectors.gotoInput),
|
143
|
+
ndx = parseInt($field.val(), 10);
|
144
|
+
|
145
|
+
if (!$[deck]('getOptions').countNested) {
|
146
|
+
if (ndx >= rootCounter) return false;
|
147
|
+
$.each($[deck]('getSlides'), function(i, $slide) {
|
148
|
+
if ($slide.data('rootIndex') === ndx) {
|
149
|
+
ndx = i + 1;
|
150
|
+
return false;
|
151
|
+
}
|
152
|
+
});
|
153
|
+
}
|
154
|
+
|
155
|
+
$[deck]('go', isNaN(ndx) ? $field.val() : ndx - 1);
|
156
|
+
$[deck]('hideGoTo');
|
157
|
+
$field.val('');
|
158
|
+
|
159
|
+
e.preventDefault();
|
160
|
+
});
|
161
|
+
|
162
|
+
// Dont let keys in the input trigger deck actions
|
163
|
+
$(opts.selectors.gotoInput)
|
164
|
+
.unbind('keydown.deckgoto')
|
165
|
+
.bind('keydown.deckgoto', function(e) {
|
166
|
+
e.stopPropagation();
|
167
|
+
});
|
168
|
+
});
|
169
|
+
})(jQuery, 'deck');
|
170
|
+
|
@@ -0,0 +1,46 @@
|
|
1
|
+
.deck-container {
|
2
|
+
.goto-form {
|
3
|
+
position:absolute;
|
4
|
+
z-index:3;
|
5
|
+
bottom:10px;
|
6
|
+
left:50%;
|
7
|
+
height:1.75em;
|
8
|
+
margin:0 0 0 -9.125em;
|
9
|
+
line-height:1.75em;
|
10
|
+
padding:0.625em;
|
11
|
+
display:none;
|
12
|
+
background:#ccc;
|
13
|
+
overflow:hidden;
|
14
|
+
|
15
|
+
.borderradius & {
|
16
|
+
-webkit-border-radius:10px;
|
17
|
+
-moz-border-radius:10px;
|
18
|
+
border-radius:10px;
|
19
|
+
}
|
20
|
+
|
21
|
+
label {
|
22
|
+
font-weight:bold;
|
23
|
+
}
|
24
|
+
|
25
|
+
label, input {
|
26
|
+
display:inline-block;
|
27
|
+
font-family:inherit;
|
28
|
+
}
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
.deck-goto .goto-form {
|
33
|
+
display:block;
|
34
|
+
}
|
35
|
+
|
36
|
+
#goto-slide {
|
37
|
+
width:8.375em;
|
38
|
+
margin:0 0.625em;
|
39
|
+
height:1.4375em;
|
40
|
+
}
|
41
|
+
|
42
|
+
@media print {
|
43
|
+
.goto-form, #goto-slide {
|
44
|
+
display:none !important;
|
45
|
+
}
|
46
|
+
}
|
@@ -0,0 +1,142 @@
|
|
1
|
+
/*!
|
2
|
+
Deck JS - deck.hash
|
3
|
+
Copyright (c) 2011 Caleb Troughton
|
4
|
+
Dual licensed under the MIT license and GPL license.
|
5
|
+
https://github.com/imakewebthings/deck.js/blob/master/MIT-license.txt
|
6
|
+
https://github.com/imakewebthings/deck.js/blob/master/GPL-license.txt
|
7
|
+
*/
|
8
|
+
|
9
|
+
/*
|
10
|
+
This module adds deep linking to individual slides, enables internal links
|
11
|
+
to slides within decks, and updates the address bar with the hash as the user
|
12
|
+
moves through the deck. A permalink anchor is also updated. Standard themes
|
13
|
+
hide this link in browsers that support the History API, and show it for
|
14
|
+
those that do not. Slides that do not have an id are assigned one according to
|
15
|
+
the hashPrefix option. In addition to the on-slide container state class
|
16
|
+
kept by core, this module adds an on-slide state class that uses the id of each
|
17
|
+
slide.
|
18
|
+
*/
|
19
|
+
(function ($, deck, window, undefined) {
|
20
|
+
var $d = $(document),
|
21
|
+
$window = $(window),
|
22
|
+
|
23
|
+
/* Collection of internal fragment links in the deck */
|
24
|
+
$internals,
|
25
|
+
|
26
|
+
/*
|
27
|
+
Internal only function. Given a string, extracts the id from the hash,
|
28
|
+
matches it to the appropriate slide, and navigates there.
|
29
|
+
*/
|
30
|
+
goByHash = function(str) {
|
31
|
+
var id = str.substr(str.indexOf("#") + 1),
|
32
|
+
slides = $[deck]('getSlides');
|
33
|
+
|
34
|
+
$.each(slides, function(i, $el) {
|
35
|
+
if ($el.attr('id') === id) {
|
36
|
+
$[deck]('go', i);
|
37
|
+
return false;
|
38
|
+
}
|
39
|
+
});
|
40
|
+
|
41
|
+
// If we don't set these to 0 the container scrolls due to hashchange
|
42
|
+
$[deck]('getContainer').scrollLeft(0).scrollTop(0);
|
43
|
+
};
|
44
|
+
|
45
|
+
/*
|
46
|
+
Extends defaults/options.
|
47
|
+
|
48
|
+
options.selectors.hashLink
|
49
|
+
The element matching this selector has its href attribute updated to
|
50
|
+
the hash of the current slide as the user navigates through the deck.
|
51
|
+
|
52
|
+
options.hashPrefix
|
53
|
+
Every slide that does not have an id is assigned one at initialization.
|
54
|
+
Assigned ids take the form of hashPrefix + slideIndex, e.g., slide-0,
|
55
|
+
slide-12, etc.
|
56
|
+
|
57
|
+
options.preventFragmentScroll
|
58
|
+
When deep linking to a hash of a nested slide, this scrolls the deck
|
59
|
+
container to the top, undoing the natural browser behavior of scrolling
|
60
|
+
to the document fragment on load.
|
61
|
+
*/
|
62
|
+
$.extend(true, $[deck].defaults, {
|
63
|
+
selectors: {
|
64
|
+
hashLink: '.deck-permalink'
|
65
|
+
},
|
66
|
+
|
67
|
+
hashPrefix: 'slide-',
|
68
|
+
preventFragmentScroll: true
|
69
|
+
});
|
70
|
+
|
71
|
+
|
72
|
+
$d.bind('deck.init', function() {
|
73
|
+
var opts = $[deck]('getOptions');
|
74
|
+
$internals = $(),
|
75
|
+
slides = $[deck]('getSlides');
|
76
|
+
|
77
|
+
$.each(slides, function(i, $el) {
|
78
|
+
var hash;
|
79
|
+
|
80
|
+
/* Hand out ids to the unfortunate slides born without them */
|
81
|
+
if (!$el.attr('id') || $el.data('deckAssignedId') === $el.attr('id')) {
|
82
|
+
$el.attr('id', opts.hashPrefix + i);
|
83
|
+
$el.data('deckAssignedId', opts.hashPrefix + i);
|
84
|
+
}
|
85
|
+
|
86
|
+
hash ='#' + $el.attr('id');
|
87
|
+
|
88
|
+
/* Deep link to slides on init */
|
89
|
+
if (hash === window.location.hash) {
|
90
|
+
$[deck]('go', i);
|
91
|
+
}
|
92
|
+
|
93
|
+
/* Add internal links to this slide */
|
94
|
+
$internals = $internals.add('a[href="' + hash + '"]');
|
95
|
+
});
|
96
|
+
|
97
|
+
if (!Modernizr.hashchange) {
|
98
|
+
/* Set up internal links using click for the poor browsers
|
99
|
+
without a hashchange event. */
|
100
|
+
$internals.unbind('click.deckhash').bind('click.deckhash', function(e) {
|
101
|
+
goByHash($(this).attr('href'));
|
102
|
+
});
|
103
|
+
}
|
104
|
+
|
105
|
+
/* Set up first id container state class */
|
106
|
+
if (slides.length) {
|
107
|
+
$[deck]('getContainer').addClass(opts.classes.onPrefix + $[deck]('getSlide').attr('id'));
|
108
|
+
};
|
109
|
+
})
|
110
|
+
/* Update permalink, address bar, and state class on a slide change */
|
111
|
+
.bind('deck.change', function(e, from, to) {
|
112
|
+
var hash = '#' + $[deck]('getSlide', to).attr('id'),
|
113
|
+
hashPath = window.location.href.replace(/#.*/, '') + hash,
|
114
|
+
opts = $[deck]('getOptions'),
|
115
|
+
osp = opts.classes.onPrefix,
|
116
|
+
$c = $[deck]('getContainer');
|
117
|
+
|
118
|
+
$c.removeClass(osp + $[deck]('getSlide', from).attr('id'));
|
119
|
+
$c.addClass(osp + $[deck]('getSlide', to).attr('id'));
|
120
|
+
|
121
|
+
$(opts.selectors.hashLink).attr('href', hashPath);
|
122
|
+
if (Modernizr.history) {
|
123
|
+
window.history.replaceState({}, "", hashPath);
|
124
|
+
}
|
125
|
+
});
|
126
|
+
|
127
|
+
/* Deals with internal links in modern browsers */
|
128
|
+
$window.bind('hashchange.deckhash', function(e) {
|
129
|
+
if (e.originalEvent && e.originalEvent.newURL) {
|
130
|
+
goByHash(e.originalEvent.newURL);
|
131
|
+
}
|
132
|
+
else {
|
133
|
+
goByHash(window.location.hash);
|
134
|
+
}
|
135
|
+
})
|
136
|
+
/* Prevent scrolling on deep links */
|
137
|
+
.bind('load', function() {
|
138
|
+
if ($[deck]('getOptions').preventFragmentScroll) {
|
139
|
+
$[deck]('getContainer').scrollLeft(0).scrollTop(0);
|
140
|
+
}
|
141
|
+
});
|
142
|
+
})(jQuery, 'deck', this);
|
@@ -0,0 +1,47 @@
|
|
1
|
+
.deck-menu .slide {
|
2
|
+
background: #eee;
|
3
|
+
position: relative;
|
4
|
+
left: 0;
|
5
|
+
top: 0;
|
6
|
+
visibility: visible;
|
7
|
+
cursor: pointer;
|
8
|
+
}
|
9
|
+
.no-csstransforms .deck-menu > .slide {
|
10
|
+
float: left;
|
11
|
+
width: 22%;
|
12
|
+
height: 22%;
|
13
|
+
min-height: 0;
|
14
|
+
margin: 1%;
|
15
|
+
font-size: 0.22em;
|
16
|
+
overflow: hidden;
|
17
|
+
padding: 0 0.5%;
|
18
|
+
}
|
19
|
+
.csstransforms .deck-menu > .slide {
|
20
|
+
-webkit-transform: scale(0.22) !important;
|
21
|
+
-moz-transform: scale(0.22) !important;
|
22
|
+
-o-transform: scale(0.22) !important;
|
23
|
+
-ms-transform: scale(0.22) !important;
|
24
|
+
transform: scale(0.22) !important;
|
25
|
+
-webkit-transform-origin: 0 0;
|
26
|
+
-moz-transform-origin: 0 0;
|
27
|
+
-o-transform-origin: 0 0;
|
28
|
+
-ms-transform-origin: 0 0;
|
29
|
+
transform-origin: 0 0;
|
30
|
+
-webkit-box-sizing: border-box;
|
31
|
+
-moz-box-sizing: border-box;
|
32
|
+
box-sizing: border-box;
|
33
|
+
width: 100%;
|
34
|
+
height: 100%;
|
35
|
+
overflow: hidden;
|
36
|
+
padding: 0 48px;
|
37
|
+
margin: 12px;
|
38
|
+
}
|
39
|
+
.deck-menu iframe, .deck-menu img, .deck-menu video {
|
40
|
+
max-width: 100%;
|
41
|
+
}
|
42
|
+
.deck-menu .deck-current, .no-touch .deck-menu .slide:hover {
|
43
|
+
background: #ddf;
|
44
|
+
}
|
45
|
+
.deck-menu.deck-container:hover .deck-prev-link, .deck-menu.deck-container:hover .deck-next-link {
|
46
|
+
display: none;
|
47
|
+
}
|