diff --git a/src/layouts/index.html b/src/layouts/index.html
index b27afb6..a70c7cd 100644
--- a/src/layouts/index.html
+++ b/src/layouts/index.html
@@ -26,8 +26,8 @@
@@ -68,17 +68,31 @@
border-bottom: 1px solid gray;
}
- #terminal-output {
- white-space: pre;
- }
- #terminal-input {
- position: relative;
- }
#terminal-input:before {
content: ">";
color: green;
position: absolute;
left: 0;
+ animation: blink 1s linear infinite;
+ }
+
+ @keyframes blink {
+ 0% {
+ opacity: 0;
+ }
+ 50% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0;
+ }
+ }
+
+ #terminal-output {
+ white-space: pre;
+ }
+ #terminal-input {
+ position: relative;
}
@@ -481,13 +495,9 @@