2021-06-13 17:05:40 +02:00
|
|
|
@import "theme";
|
|
|
|
|
|
|
|
.blinking-cursor {
|
2021-09-05 01:09:30 +02:00
|
|
|
font-weight: 100;
|
|
|
|
color: #2e3d48;
|
|
|
|
-webkit-animation: 1s cursorblink step-end infinite;
|
|
|
|
-moz-animation: 1s cursorblink step-end infinite;
|
|
|
|
-ms-animation: 1s cursorblink step-end infinite;
|
|
|
|
-o-animation: 1s cursorblink step-end infinite;
|
|
|
|
animation: 1s cursorblink step-end infinite;
|
2021-06-13 17:05:40 +02:00
|
|
|
}
|
|
|
|
|
2021-09-04 22:18:08 +02:00
|
|
|
@keyframes cursorblink {
|
2021-09-05 01:09:30 +02:00
|
|
|
from,
|
|
|
|
to {
|
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
color: $hacker-green;
|
|
|
|
}
|
2021-06-13 17:05:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@-moz-keyframes cursorblink {
|
2021-09-05 01:09:30 +02:00
|
|
|
from,
|
|
|
|
to {
|
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
color: $hacker-green;
|
|
|
|
}
|
2021-06-13 17:05:40 +02:00
|
|
|
}
|
|
|
|
|
2021-09-04 22:18:08 +02:00
|
|
|
@-webkit-keyframes cursorblink {
|
2021-09-05 01:09:30 +02:00
|
|
|
from,
|
|
|
|
to {
|
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
color: $hacker-green;
|
|
|
|
}
|
2021-06-13 17:05:40 +02:00
|
|
|
}
|
|
|
|
|
2021-09-04 22:18:08 +02:00
|
|
|
@-ms-keyframes cursorblink {
|
2021-09-05 01:09:30 +02:00
|
|
|
from,
|
|
|
|
to {
|
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
color: $hacker-green;
|
|
|
|
}
|
2021-06-13 17:05:40 +02:00
|
|
|
}
|
|
|
|
|
2021-09-04 22:18:08 +02:00
|
|
|
@-o-keyframes cursorblink {
|
2021-09-05 01:09:30 +02:00
|
|
|
from,
|
|
|
|
to {
|
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
color: $hacker-green;
|
|
|
|
}
|
2021-09-04 22:18:08 +02:00
|
|
|
}
|