mirror of
https://github.com/hazemKrimi/touch-programming.git
synced 2026-05-01 18:20:26 +00:00
Migrate to TS with ESLint and Prettier
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
.container {
|
||||
margin: auto;
|
||||
padding: 1rem;
|
||||
letter-spacing: 0.12rem;
|
||||
}
|
||||
|
||||
.pending {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
color: gray;
|
||||
animation: blink 0.75s infinite ease-in-out;
|
||||
}
|
||||
|
||||
.correct {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.incorrect {
|
||||
color: red;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
0% {
|
||||
border-left: 1px solid white;
|
||||
}
|
||||
|
||||
50% {
|
||||
border-left: 1px solid transparent;
|
||||
}
|
||||
|
||||
100% {
|
||||
border-left: 1px solid white;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user