Expanding deck

This commit is contained in:
Jeremy Likness 2019-11-23 13:04:33 -08:00
parent 2816077c19
commit 5b0c9fbc15
5 changed files with 39 additions and 4 deletions

View File

@ -18,4 +18,16 @@
animation-name: enter-right;
animation-timing-function: ease-out;
animation-duration: 0.3s;
}
@keyframes spin {
from { transform: rotate(0deg) }
to { transform: rotate(360deg) }
}
.anim-spin {
animation-name: spin;
animation-timing-function: ease-in-out;
animation-duration: 2s;
animation-iteration-count: infinite;
}

View File

@ -1,11 +1,29 @@
body {
padding: 5px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 5vh;
font-size: 4vh;
}
button {
font-size: 5vh;
font-size: 4vh;
}
pre {
background-color: black;
overflow-x: auto;
word-break: normal;
word-wrap: normal;
white-space: pre;
border: solid 1px gray;
padding: 0.5em;
color: lightgreen;
font-family: "consolas", sans-serif
}
slide-deck img {
display: block;
margin-left: auto;
margin-right: auto;
}
@media only screen and (max-width: 800px) {

BIN
images/vanillin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,5 +1,6 @@
<title>Vanilla.js: Modern 1st Party JavaScript</title>
<h1>Vanilla.js: Modern 1st Party JavaScript</h1>
<img src="/images/vanillin.png" class="anim-spin" alt="Vanillin molecule" title="Vanillin molecule"/>
<h2>Jeremy Likness</h2>
<h3>Cloud Advocate, Microsoft</h3>
<nextslide>002-experiment</nextslide>

View File

@ -1,3 +1,7 @@
<title>More Stuff</title>
<h1>More Stuff</h1>
<title>Let's try an experiment...</title>
<h2>Let's try an experiment</h2>
<pre>
ng --new
echo "%s" > cat.txt
</pre>
<nextslide>003-morestuff</nextslide>