@@ -82,13 +82,15 @@ export default {
cursor: pointer;
}
-.correct {
- background-color: rgb(124, 230, 124);
-}
-.highlight_correct {
- border: 1px solid rgb(124, 230, 124);
-}
-.wrong {
- background-color: rgb(255, 71, 71);
+@keyframes correct-selected {
+ 0% {
+ transform: scale(0);
+ }
+ 50% {
+ transform: scale(1.5);
+ }
+ 100% {
+ transform: scale(1);
+ }
}
diff --git a/frontend/src/components/Login.vue b/frontend/src/components/Login.vue
new file mode 100644
index 0000000..1d89d9b
--- /dev/null
+++ b/frontend/src/components/Login.vue
@@ -0,0 +1,74 @@
+
+
+
Авторизация:
+
{{ question }}
+
+
+
+
+
+
+
+
\ No newline at end of file