Files
touch-programming/client/src/components/Code/index.css
T

45 lines
524 B
CSS

.container {
margin: auto;
padding: 1rem;
letter-spacing: 0.12rem;
}
.pending, .space {
color: gray;
}
.highlight {
color: gray;
animation: blink 0.75s infinite ease-in-out;
}
.correct {
color: green;
}
.incorrect {
color: red;
}
.incorrect-space {
border-bottom: 1px solid red;
}
.incorrect-enter {
border-left: 1px solid red;
}
@keyframes blink {
0% {
border-left: 1px solid white;
}
50% {
border-left: 1px solid transparent;
}
100% {
border-left: 1px solid white;
}
}