line numbers

This commit is contained in:
Derek Montgomery
2016-07-29 09:15:58 -05:00
parent 57f2c960af
commit cefd8bf131
8 changed files with 115 additions and 13 deletions

View File

@ -43,13 +43,28 @@
margin-top: 3rem;
}
@keyframes success-fadeout {
0% { opacity: 1; max-height: 40px; }
85% { opacity: 0; max-height: 40px; padding: .5rem 0; margin-bottom: .5rem; }
100% { opacity: 0; max-height: 0; padding: 0; margin-bottom: 0; }
}
.success {
box-sizing: border-box;
text-align: center;
background-color: $accent-color-3;
color: #fff;
padding-top: .5rem;
padding-bottom: .5rem;
margin-bottom: .5rem;
animation-name: success-fadeout;
animation-duration: 1.5s;
animation-delay: 2s;
animation-fill-mode: forwards;
}
.text-answer.answer-container {
white-space: pre-line;
}
@media only screen and (min-width: $tablet) {