repo.or.cz
/
deck.js.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix case for #58 where slide number entered is higher than countNested total but...
[deck.js.git]
/
introduction
/
introduction.scss
blob
94325b15d39cf09bef9c6409d82b739e3dc222c5
1
.deck-container {
2
.theme-menu {
3
display:none;
4
position:fixed;
5
z-index:3;
6
bottom:10px;
7
left:10px;
8
height:20px;
9
line-height:20px;
10
padding:5px;
11
border:1px solid #ddd;
12
-webkit-border-radius:5px;
13
-moz-border-radius:5px;
14
border-radius:5px;
15
overflow:hidden;
16
background:#fff;
17
font-family:sans-serif;
18
color:#888;
19
20
.js & {
21
display:block;
22
}
23
24
h2 {
25
float:left;
26
font-size:20px;
27
border:0;
28
padding:5px 10px;
29
margin:0;
30
height:20px;
31
position:relative;
32
top:-5px;
33
left:-5px;
34
background:#ccc;
35
color:#444;
36
text-shadow:none;
37
font-family:sans-serif;
38
font-weight:bold;
39
}
40
41
label {
42
float:left;
43
display:block;
44
font-size:12px;
45
vertical-align:baseline;
46
margin:0 4px 0 15px;
47
}
48
49
select {
50
float:left;
51
display:block;
52
font-size:14px;
53
}
54
}
55
}
56
57
@media print {
58
.theme-menu {
59
display:none !important;
60
}
61
}
62