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) {