File size: 1,856 Bytes
fbff59d |
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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
.reveal .slide-logo {
display: block;
position: fixed;
bottom: 0;
right: 12px;
max-height: 2.2rem;
height: 100%;
width: auto;
z-index: 2;
}
.reveal .footer {
display: block;
position: fixed;
bottom: 18px;
width: 100%;
margin: 0 auto;
text-align: center;
font-size: 18px;
z-index: 2;
}
.reveal .footer > * {
margin-top: 0;
margin-bottom: 0;
}
.reveal .slide .footer {
display: none;
}
.reveal .slide-number {
bottom: 10px;
right: 10px;
font-size: 16px;
background-color: transparent;
}
.reveal.has-logo .slide-number {
bottom: initial;
top: 8px;
right: 8px;
}
.reveal .slide-number .slide-number-delimiter {
margin: 0;
}
.reveal .slide-menu-button {
left: 8px;
bottom: 8px;
}
.reveal .slide-chalkboard-buttons {
position: fixed;
left: 12px;
bottom: 8px;
z-index: 30;
font-size: 24px;
}
.reveal .slide-chalkboard-buttons.slide-menu-offset {
left: 54px;
}
.reveal .slide-chalkboard-buttons > span {
margin-right: 14px;
cursor: pointer;
}
@media screen and (max-width: 800px) {
.reveal .slide-logo {
max-height: 1.1rem;
bottom: -2px;
right: 10px;
}
.reveal .footer {
font-size: 14px;
bottom: 12px;
}
.reveal .slide-number {
font-size: 12px;
bottom: 7px;
}
.reveal .slide-menu-button .fas::before {
height: 1.3rem;
width: 1.3rem;
vertical-align: -0.125em;
background-size: 1.3rem 1.3rem;
}
.reveal .slide-chalkboard-buttons .fas::before {
height: 0.95rem;
width: 0.95rem;
background-size: 0.95rem 0.95rem;
vertical-align: -0em;
}
.reveal .slide-chalkboard-buttons.slide-menu-offset {
left: 36px;
}
.reveal .slide-chalkboard-buttons > span {
margin-right: 9px;
}
}
html.print-pdf .reveal .slide-menu-button,
html.print-pdf .reveal .slide-chalkboard-buttons {
display: none;
}
|